From 284ec1d4282e3ff726157cfa1bd90f19dcf2a8f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Tue, 26 Jul 2022 11:11:40 +0200 Subject: [PATCH] Profile: Fix nav tree link to notifications (#52685) --- pkg/api/index.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/api/index.go b/pkg/api/index.go index 9291efcecca..7103587a73f 100644 --- a/pkg/api/index.go +++ b/pkg/api/index.go @@ -41,7 +41,7 @@ func (hs *HTTPServer) getProfileNode(c *models.ReqContext) *dtos.NavLink { } children = append(children, &dtos.NavLink{ - Text: "Notification history", Id: "profile/notifications", Url: hs.Cfg.AppSubURL + "profile/notifications", Icon: "bell", + Text: "Notification history", Id: "profile/notifications", Url: hs.Cfg.AppSubURL + "/profile/notifications", Icon: "bell", }) if setting.AddChangePasswordLink() {