js: fix typo in comment
This commit is contained in:
parent
071d9145ca
commit
c6fff58f38
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ export default class AutoSaveController {
|
||||||
|
|
||||||
// Add a new autosave request to the queue.
|
// Add a new autosave request to the queue.
|
||||||
// It will be started after the previous one finishes (to prevent older form data
|
// It will be started after the previous one finishes (to prevent older form data
|
||||||
// to overwrite newer data if the server does not repond in order.)
|
// to overwrite newer data if the server does not respond in order.)
|
||||||
enqueueAutosaveRequest(form) {
|
enqueueAutosaveRequest(form) {
|
||||||
this.latestPromise = this.latestPromise.finally(() => {
|
this.latestPromise = this.latestPromise.finally(() => {
|
||||||
return this._sendAutosaveRequest(form)
|
return this._sendAutosaveRequest(form)
|
||||||
|
|
Loading…
Reference in a new issue