🐛 Fixed missing autosave indicator regression in editor

refs https://github.com/TryGhost/Ghost/issues/12098

- the component template was directly referencing `this._isSaving` which meant that the `this.isSaving` getter was never fetched and so no autotracking was set up for `this.args.isSaving` to trigger the task that updates `this._isSaving`
This commit is contained in:
Kevin Ansfield 2020-08-03 09:51:06 +01:00
parent 15d1bfea30
commit 970df7fba7

View File

@ -1,5 +1,5 @@
<div data-test-editor-post-status ...attributes>
{{#if this._isSaving}}
{{#if this.isSaving}}
Saving...
{{else if (or @post.isPublished @post.pastScheduledTime)}}
Published