From 1838e6b7749ba291c5c2d44fe8e8f20338d05372 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=A4ggmark?= Date: Fri, 11 Jun 2021 11:49:40 +0200 Subject: [PATCH] Configuration: Fix changing org preferences on FireFox (#35549) --- .../app/core/components/SharedPreferences/SharedPreferences.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/core/components/SharedPreferences/SharedPreferences.tsx b/public/app/core/components/SharedPreferences/SharedPreferences.tsx index f717996f837..008bb45310b 100644 --- a/public/app/core/components/SharedPreferences/SharedPreferences.tsx +++ b/public/app/core/components/SharedPreferences/SharedPreferences.tsx @@ -90,7 +90,7 @@ export class SharedPreferences extends PureComponent { onSubmitForm = async () => { const { homeDashboardId, theme, timezone } = this.state; - this.service.update({ homeDashboardId, theme, timezone }); + await this.service.update({ homeDashboardId, theme, timezone }); window.location.reload(); };