Skip to content

Commit ef7b753

Browse files
authored
Merge pull request #39825 from nextcloud/fix/debounce-account-properties
Increase debounce delay when saving account properties
2 parents 9c4b959 + 620b6b9 commit ef7b753

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

apps/settings/src/components/PersonalInfo/EmailSection/Email.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ export default {
262262
}
263263
}
264264
}
265-
}, 500),
265+
}, 1000),
266266
267267
async deleteEmail() {
268268
if (this.primary) {

apps/settings/src/components/PersonalInfo/shared/AccountPropertySection.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ export default {
148148
return
149149
}
150150
await this.updateProperty(value)
151-
}, 500)
151+
}, 1000)
152152
},
153153
},
154154

dist/settings-vue-settings-personal-info.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/settings-vue-settings-personal-info.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)