Skip to content

Commit

Permalink
Disable isLoading state after request
Browse files Browse the repository at this point in the history
  • Loading branch information
bastianallgeier committed Dec 5, 2024
1 parent 803d000 commit 4e16f49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion panel/src/panel/content.js
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ export default (panel) => {
// try again with the latest state in the props
await this.save(panel.view.props.content, api);

panel.dialog.isLoading = true;
panel.dialog.isLoading = false;

// give a more reassuring longer success notification
panel.notification.success(panel.t(`form.${method}.success`));
Expand Down

0 comments on commit 4e16f49

Please sign in to comment.