mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 13:54:35 +03:00
🐛 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:
parent
15d1bfea30
commit
970df7fba7
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user