fix billable status update dropdown

This commit is contained in:
Gregor Vostrak
2024-10-09 13:30:09 +02:00
parent 612f40a4b0
commit 26637e6f84

View File

@@ -82,7 +82,7 @@ async function createTag(tag: string) {
const timeEntryBillable = computed({
get: () => {
if (billable.value) {
if (billable.value === undefined) {
return 'do-not-update';
}
return billable.value ? 'billable' : 'non-billable';