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', };