aboutsummaryrefslogtreecommitdiffstats
path: root/apps/theming/src/components/BackgroundSettings.vue
diff options
context:
space:
mode:
authorLouis Chemineau <louis@chmn.me>2025-01-28 14:34:00 +0100
committerLouis <louis@chmn.me>2025-01-29 10:34:21 +0100
commit1a0fdaa01ba387eb6bdc387a736cf1f73b5b5f6e (patch)
tree170b717f4802d94529f4ba2622baf555fa33f0f6 /apps/theming/src/components/BackgroundSettings.vue
parent271552d70d2f649f0e5b503d24f85a64b1c08073 (diff)
downloadnextcloud-server-1a0fdaa01ba387eb6bdc387a736cf1f73b5b5f6e.tar.gz
nextcloud-server-1a0fdaa01ba387eb6bdc387a736cf1f73b5b5f6e.zip
fix: Increase background and primary color debounce time
This prevent flooding the server with requests Signed-off-by: Louis Chemineau <louis@chmn.me>
Diffstat (limited to 'apps/theming/src/components/BackgroundSettings.vue')
-rw-r--r--apps/theming/src/components/BackgroundSettings.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/theming/src/components/BackgroundSettings.vue b/apps/theming/src/components/BackgroundSettings.vue
index 9cddc60d30e..7dd7077baa0 100644
--- a/apps/theming/src/components/BackgroundSettings.vue
+++ b/apps/theming/src/components/BackgroundSettings.vue
@@ -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'))