@myissue/vue-website-page-builder 3.2.80 → 3.2.82
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -226,7 +226,7 @@ const handlerRumeEditingForUpdate = async function () {
|
|
|
226
226
|
secondModalButtonResumeEditingFunction.value = function () {}
|
|
227
227
|
thirdModalButtonResumeEditingFunction.value = async function () {
|
|
228
228
|
isLoadingResumeEditing.value = true
|
|
229
|
-
await delay(
|
|
229
|
+
await delay(600)
|
|
230
230
|
await pageBuilderClass.resumeEditingForUpdate()
|
|
231
231
|
isLoadingResumeEditing.value = false
|
|
232
232
|
showModalResumeEditing.value = false
|
|
@@ -1234,7 +1234,7 @@ class PageBuilderClass {
|
|
|
1234
1234
|
const draft = localStorage.getItem(key)
|
|
1235
1235
|
if (draft) {
|
|
1236
1236
|
try {
|
|
1237
|
-
await this.delay(
|
|
1237
|
+
await this.delay(500)
|
|
1238
1238
|
const draftParsed = JSON.parse(draft)
|
|
1239
1239
|
const dbComponents = this.getComponents.value
|
|
1240
1240
|
return JSON.stringify(draftParsed.components) !== JSON.stringify(dbComponents)
|