From 8fcae1ef3c55f8d72407e7e7d112100dcfca1a81 Mon Sep 17 00:00:00 2001 From: Ashley Harrison Date: Wed, 4 May 2022 14:24:10 +0100 Subject: [PATCH] Navigation: change `Search Dashboards` back to sentence case (`Search dashboards`) (#48272) * revert search dashboards to sentence case * Saved Items -> Saved items --- pkg/api/index.go | 2 +- public/app/core/components/NavBar/Next/NavBarNext.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/api/index.go b/pkg/api/index.go index e0f0707ea26..7df72ac4b67 100644 --- a/pkg/api/index.go +++ b/pkg/api/index.go @@ -179,7 +179,7 @@ func (hs *HTTPServer) getNavTree(c *models.ReqContext, hasEditPerm bool, prefs * } navTree = append(navTree, &dtos.NavLink{ - Text: "Saved Items", + Text: "Saved items", Id: "saved-items", Icon: "bookmark", SortWeight: dtos.WeightSavedItems, diff --git a/public/app/core/components/NavBar/Next/NavBarNext.tsx b/public/app/core/components/NavBar/Next/NavBarNext.tsx index aaf0bd73699..526cea4fd00 100644 --- a/public/app/core/components/NavBar/Next/NavBarNext.tsx +++ b/public/app/core/components/NavBar/Next/NavBarNext.tsx @@ -30,7 +30,7 @@ const onOpenSearch = () => { const searchItem: NavModelItem = { id: SEARCH_ITEM_ID, onClick: onOpenSearch, - text: 'Search Dashboards', + text: 'Search dashboards', icon: 'search', };