diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2022-10-05 11:34:05 +0200 |
---|---|---|
committer | John Molakvoæ <skjnldsv@protonmail.com> | 2022-10-13 12:13:39 +0200 |
commit | 4b46c5a5a02b6c1c77b99cf21b9ff933fabbcc35 (patch) | |
tree | 17de2e626c685d93f112a7a4c90efa150e6afe11 /apps/theming/src/UserThemes.vue | |
parent | f6efd54242de80f4391a7bac57dab7ddc01cb981 (diff) | |
download | nextcloud-server-4b46c5a5a02b6c1c77b99cf21b9ff933fabbcc35.tar.gz nextcloud-server-4b46c5a5a02b6c1c77b99cf21b9ff933fabbcc35.zip |
Use default system primary
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/theming/src/UserThemes.vue')
-rw-r--r-- | apps/theming/src/UserThemes.vue | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/theming/src/UserThemes.vue b/apps/theming/src/UserThemes.vue index 3e3b0afed16..1eeeb3c5b21 100644 --- a/apps/theming/src/UserThemes.vue +++ b/apps/theming/src/UserThemes.vue @@ -156,16 +156,16 @@ export default { }, }, - mounted() { - this.updateGlobalStyles() - }, - watch: { shortcutsDisabled(newState) { this.changeShortcutsDisabled(newState) }, }, + mounted() { + this.updateGlobalStyles() + }, + methods: { updateBackground(data) { this.background = (data.type === 'custom' || data.type === 'default') ? data.type : data.value |