Browse Source

fixed issue with save.

Peter Holmberg 7 years ago
parent
commit
655f4d0a8d
1 changed files with 2 additions and 1 deletions
  1. 2 1
      public/app/features/teams/state/actions.ts

+ 2 - 1
public/app/features/teams/state/actions.ts

@@ -223,6 +223,7 @@ export function updateTeamPreferences() {
     const preferences = getStore().team.preferences;
 
     await getBackendSrv().put(`/api/teams/${team.id}/preferences`, preferences);
-    window.location.reload();
+
+    dispatch(loadTeamPreferences());
   };
 }