Merge pull request #50531 from nextcloud/backport/50501/stable31

[stable31] fix: Increase background and primary color debounce time
This commit is contained in:
Andy Scherzinger 2025-01-29 18:27:02 +01:00 committed by GitHub
commit 9ee1e19157
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 5 additions and 5 deletions

View file

@ -234,7 +234,7 @@ export default {
debouncePickColor: debounce(function(...args) {
this.pickColor(...args)
}, 200),
}, 1000),
pickFile() {
const picker = getFilePickerBuilder(t('theming', 'Select a background from your files'))

View file

@ -69,7 +69,7 @@ export default defineComponent({
},
debouncedOnUpdate() {
return debounce(this.onUpdate, 500)
return debounce(this.onUpdate, 1000)
},
},

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long