fix: allow setting task/project color to black

This commit is contained in:
kolaente 2025-03-09 11:31:53 +01:00
parent 7724d62330
commit 12eb91365a
No known key found for this signature in database
GPG Key ID: F40E70337AB24C9B
1 changed files with 1 additions and 1 deletions

View File

@ -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) {