🐛 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 4e75d1abec
commit 03115d63dd
1 changed files with 1 additions and 1 deletions

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