From 014a4cda9d02e579335f1f5bc5cd278928161609 Mon Sep 17 00:00:00 2001 From: "Ha. Huynh Sam" Date: Tue, 23 Mar 2021 16:03:52 +0700 Subject: [PATCH] DashboardSettings: Fixes issue with tags list not updating when changes are made (#32241) --- .../dashboard/components/DashboardSettings/GeneralSettings.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/public/app/features/dashboard/components/DashboardSettings/GeneralSettings.tsx b/public/app/features/dashboard/components/DashboardSettings/GeneralSettings.tsx index 280e49ec8c3..00384571e21 100644 --- a/public/app/features/dashboard/components/DashboardSettings/GeneralSettings.tsx +++ b/public/app/features/dashboard/components/DashboardSettings/GeneralSettings.tsx @@ -55,6 +55,7 @@ export const GeneralSettings: React.FC = ({ dashboard }) => { const onTagsChange = (tags: string[]) => { dashboard.tags = tags; + setRenderCounter(renderCounter + 1); }; const onEditableChange = (value: boolean) => {