diff --git a/frontend/src/components/input/ColorPicker.vue b/frontend/src/components/input/ColorPicker.vue index 9f41cf73a..6a4533737 100644 --- a/frontend/src/components/input/ColorPicker.vue +++ b/frontend/src/components/input/ColorPicker.vue @@ -105,7 +105,7 @@ watch( watch(color, () => update()) -const isEmpty = computed(() => color.value === '#000000' || color.value === '') +const isEmpty = computed(() => color.value === '') function update(force = false) { if(isEmpty.value && !force) {