mirror of
https://github.com/flarum/core.git
synced 2025-07-25 18:51:40 +02:00
Properly hide loading spinner on unsuccessful post edit
This commit is contained in:
@@ -68,7 +68,10 @@ export default class EditPostComposer extends ComposerBody {
|
||||
app.composer.hide();
|
||||
m.redraw();
|
||||
},
|
||||
() => this.loading = false
|
||||
() => {
|
||||
this.loading = false;
|
||||
m.redraw();
|
||||
}
|
||||
);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user