mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-01 02:41:39 -05:00
🐛 Fixed slug saving in editor (#16007)
refs TryGhost/Team#2294 - If user enter the slug name and then leave the post page, we should wait until the slug would be saved on backend. The problem can be reproduced with slow internet connection.
This commit is contained in:
parent
270f288c48
commit
00c2b71502
2 changed files with 16 additions and 0 deletions
|
@ -788,6 +788,14 @@ export default class EditorController extends Controller {
|
|||
this._koenig.cleanup();
|
||||
}
|
||||
|
||||
// user can enter the slug name and then leave the post page,
|
||||
// in such case we should wait until the slug would be saved on backend
|
||||
if (this.updateSlugTask.isRunning) {
|
||||
transition.abort();
|
||||
await this.updateSlugTask.last;
|
||||
return transition.retry();
|
||||
}
|
||||
|
||||
let hasDirtyAttributes = this.hasDirtyAttributes;
|
||||
let state = post.getProperties('isDeleted', 'isSaving', 'hasDirtyAttributes', 'isNew');
|
||||
|
||||
|
|
|
@ -791,6 +791,14 @@ export default class LexicalEditorController extends Controller {
|
|||
// this._koenig.cleanup();
|
||||
// }
|
||||
|
||||
// user can enter the slug name and then leave the post page,
|
||||
// in such case we should wait until the slug would be saved on backend
|
||||
if (this.updateSlugTask.isRunning) {
|
||||
transition.abort();
|
||||
await this.updateSlugTask.last;
|
||||
return transition.retry();
|
||||
}
|
||||
|
||||
let hasDirtyAttributes = this.hasDirtyAttributes;
|
||||
let state = post.getProperties('isDeleted', 'isSaving', 'hasDirtyAttributes', 'isNew');
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue