aboutsummaryrefslogtreecommitdiffstats
path: root/apps/theming
diff options
context:
space:
mode:
authorFerdinand Thiessen <opensource@fthiessen.de>2024-06-21 15:06:25 +0200
committerFerdinand Thiessen <opensource@fthiessen.de>2024-06-23 16:53:10 +0200
commit81ad28f91025b6e2730f2e5d90fe8af2a842c354 (patch)
treef6a75acec9b905a85d7f2c0b92578dae986becfa /apps/theming
parenta83f276352785ddde18954ee14de772037690428 (diff)
downloadnextcloud-server-81ad28f91025b6e2730f2e5d90fe8af2a842c354.tar.gz
nextcloud-server-81ad28f91025b6e2730f2e5d90fe8af2a842c354.zip
chore(deps): Update `debounce` to 2.1.0
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'apps/theming')
-rw-r--r--apps/theming/src/components/UserPrimaryColor.vue4
-rw-r--r--apps/theming/src/components/admin/ColorPickerField.vue3
2 files changed, 4 insertions, 3 deletions
diff --git a/apps/theming/src/components/UserPrimaryColor.vue b/apps/theming/src/components/UserPrimaryColor.vue
index 7adfabecddd..ce39f449ceb 100644
--- a/apps/theming/src/components/UserPrimaryColor.vue
+++ b/apps/theming/src/components/UserPrimaryColor.vue
@@ -31,10 +31,10 @@ import { loadState } from '@nextcloud/initial-state'
import { translate as t } from '@nextcloud/l10n'
import { generateOcsUrl } from '@nextcloud/router'
import { colord } from 'colord'
-import { debounce } from 'debounce'
import { defineComponent } from 'vue'
-
import axios from '@nextcloud/axios'
+import debounce from 'debounce'
+
import NcButton from '@nextcloud/vue/dist/Components/NcButton.js'
import NcColorPicker from '@nextcloud/vue/dist/Components/NcColorPicker.js'
import NcLoadingIcon from '@nextcloud/vue/dist/Components/NcLoadingIcon.js'
diff --git a/apps/theming/src/components/admin/ColorPickerField.vue b/apps/theming/src/components/admin/ColorPickerField.vue
index e7c7d7bf8ce..8e6433064ec 100644
--- a/apps/theming/src/components/admin/ColorPickerField.vue
+++ b/apps/theming/src/components/admin/ColorPickerField.vue
@@ -48,8 +48,9 @@
</template>
<script>
-import { debounce } from 'debounce'
import { colord } from 'colord'
+import debounce from 'debounce'
+
import NcButton from '@nextcloud/vue/dist/Components/NcButton.js'
import NcColorPicker from '@nextcloud/vue/dist/Components/NcColorPicker.js'
import NcLoadingIcon from '@nextcloud/vue/dist/Components/NcLoadingIcon.js'