diff options
author | Christopher Ng <chrng8@gmail.com> | 2023-08-11 16:10:36 -0700 |
---|---|---|
committer | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-06-21 01:21:48 +0200 |
commit | 620b6b9c3b3791d76ca5aadb807af310b95b77b3 (patch) | |
tree | 73f41931acc94a2026fc215e8808c13671fea1cf /apps/settings | |
parent | 9c4b95969002973d3ed39c0782d5a4bd3bc9f6b5 (diff) | |
download | nextcloud-server-620b6b9c3b3791d76ca5aadb807af310b95b77b3.tar.gz nextcloud-server-620b6b9c3b3791d76ca5aadb807af310b95b77b3.zip |
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>
Diffstat (limited to 'apps/settings')
-rw-r--r-- | apps/settings/src/components/PersonalInfo/EmailSection/Email.vue | 2 | ||||
-rw-r--r-- | apps/settings/src/components/PersonalInfo/shared/AccountPropertySection.vue | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/settings/src/components/PersonalInfo/EmailSection/Email.vue b/apps/settings/src/components/PersonalInfo/EmailSection/Email.vue index 7e55b0cdb87..ecc463c7363 100644 --- a/apps/settings/src/components/PersonalInfo/EmailSection/Email.vue +++ b/apps/settings/src/components/PersonalInfo/EmailSection/Email.vue @@ -262,7 +262,7 @@ export default { } } } - }, 500), + }, 1000), async deleteEmail() { if (this.primary) { diff --git a/apps/settings/src/components/PersonalInfo/shared/AccountPropertySection.vue b/apps/settings/src/components/PersonalInfo/shared/AccountPropertySection.vue index 0b4bb9c3c27..fc7fe7f7984 100644 --- a/apps/settings/src/components/PersonalInfo/shared/AccountPropertySection.vue +++ b/apps/settings/src/components/PersonalInfo/shared/AccountPropertySection.vue @@ -148,7 +148,7 @@ export default { return } await this.updateProperty(value) - }, 500) + }, 1000) }, }, |