From 4e16f4962ef7747bbca151cbc6febf6a9688b0b1 Mon Sep 17 00:00:00 2001 From: Bastian Allgeier Date: Thu, 5 Dec 2024 14:45:58 +0100 Subject: [PATCH] Disable isLoading state after request --- panel/src/panel/content.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panel/src/panel/content.js b/panel/src/panel/content.js index eb4226efc4..8557becc06 100644 --- a/panel/src/panel/content.js +++ b/panel/src/panel/content.js @@ -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`));