From 81e7cb60fff3d5bdaba38e2cd766b016fbfb9562 Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Fri, 15 Oct 2021 17:33:01 +0900 Subject: [PATCH] Chore: Fix typo in dashboard.go (#39928) requets -> requests --- pkg/api/dashboard.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/api/dashboard.go b/pkg/api/dashboard.go index 477b4e478cc..4eef73aeaa0 100644 --- a/pkg/api/dashboard.go +++ b/pkg/api/dashboard.go @@ -338,7 +338,7 @@ func (hs *HTTPServer) PostDashboard(c *models.ReqContext, cmd models.SaveDashboa dashboard = dash // the original request } - // This will broadcast all save requets only if a `gitops` observer exists. + // This will broadcast all save requests only if a `gitops` observer exists. // gitops is useful when trying to save dashboards in an environment where the user can not save channel := hs.Live.GrafanaScope.Dashboards liveerr := channel.DashboardSaved(c.SignedInUser.OrgId, c.SignedInUser.ToUserDisplayDTO(), cmd.Message, dashboard, err)