From 12eb91365ac1a0f80f371bee4eb44866c7dbda2a Mon Sep 17 00:00:00 2001 From: kolaente Date: Sun, 9 Mar 2025 11:31:53 +0100 Subject: [PATCH] fix: allow setting task/project color to black --- frontend/src/components/input/ColorPicker.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {