Properly hide loading spinner on unsuccessful post edit

This commit is contained in:
Toby Zerner 2015-09-22 16:57:06 +09:30
parent 8937050aed
commit 8ab0686666

View File

@ -68,7 +68,10 @@ export default class EditPostComposer extends ComposerBody {
app.composer.hide();
m.redraw();
},
() => this.loading = false
() => {
this.loading = false;
m.redraw();
}
);
}
}