Skip to content

Commit

Permalink
await save complete
Browse files Browse the repository at this point in the history
  • Loading branch information
corsacca committed Dec 18, 2024
1 parent 286972e commit f6f5d39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dt-core/admin/components/setup-wizard-keys.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ export class SetupWizardKeys extends OpenLitElement {
back() {
this.dispatchEvent(new CustomEvent('back'));
}
next() {
async next() {
this.saving = true;
window.dt_admin_shared.update_dt_options(this._options);
await window.dt_admin_shared.update_dt_options(this._options);
this.saving = false;

this.dispatchEvent(new CustomEvent('next'));
Expand Down

0 comments on commit f6f5d39

Please sign in to comment.