Configuration: Fix changing org preferences on FireFox (#35549)

This commit is contained in:
Hugo Häggmark 2021-06-11 11:49:40 +02:00 committed by GitHub
parent 8e827337ea
commit 1838e6b774
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -90,7 +90,7 @@ export class SharedPreferences extends PureComponent<Props, State> {
onSubmitForm = async () => {
const { homeDashboardId, theme, timezone } = this.state;
this.service.update({ homeDashboardId, theme, timezone });
await this.service.update({ homeDashboardId, theme, timezone });
window.location.reload();
};