From 16478a1b9c819221f89126c9fc2e52a99fea12bc Mon Sep 17 00:00:00 2001 From: Peter Frank Date: Fri, 1 Oct 2021 06:42:17 -0700 Subject: [PATCH] Modify capitalization of default navigation link (#14849) Changing `Terms of use` to `Terms of Use` This has been bothering for me a while, and it's now consistent with `Code of Conduct` (which is not `Code of conduct` ) capitalization-wise --- lib/tasks/add_navigation_links.rake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/tasks/add_navigation_links.rake b/lib/tasks/add_navigation_links.rake index ee73b6b62..294183168 100644 --- a/lib/tasks/add_navigation_links.rake +++ b/lib/tasks/add_navigation_links.rake @@ -57,7 +57,7 @@ namespace :navigation_links do section: :other, ) NavigationLink.where(url: "/terms").first_or_create( - name: "Terms of use", + name: "Terms of Use", url: URL.url("terms"), icon: look_icon, display_only_when_signed_in: false, @@ -150,7 +150,7 @@ namespace :navigation_links do section: :other, ) NavigationLink.where(url: "#{base_url}/terms").first_or_create( - name: "Terms of use", + name: "Terms of Use", icon: look_icon, display_only_when_signed_in: false, position: 2,