Browse Source

fix: Increase debounce delay when saving account properties

Signed-off-by: Christopher Ng <chrng8@gmail.com>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
pull/39825/head
Christopher Ng 10 months ago
parent
commit
620b6b9c3b
No account linked to committer's email address

+ 1
- 1
apps/settings/src/components/PersonalInfo/EmailSection/Email.vue View File

@@ -262,7 +262,7 @@ export default {
}
}
}
}, 500),
}, 1000),

async deleteEmail() {
if (this.primary) {

+ 1
- 1
apps/settings/src/components/PersonalInfo/shared/AccountPropertySection.vue View File

@@ -148,7 +148,7 @@ export default {
return
}
await this.updateProperty(value)
}, 500)
}, 1000)
},
},


+ 2
- 2
dist/settings-vue-settings-personal-info.js
File diff suppressed because it is too large
View File


+ 1
- 1
dist/settings-vue-settings-personal-info.js.map
File diff suppressed because it is too large
View File


Loading…
Cancel
Save