mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-17 12:42:15 +01:00
fix billable status update dropdown
This commit is contained in:
@@ -82,7 +82,7 @@ async function createTag(tag: string) {
|
|||||||
|
|
||||||
const timeEntryBillable = computed({
|
const timeEntryBillable = computed({
|
||||||
get: () => {
|
get: () => {
|
||||||
if (billable.value) {
|
if (billable.value === undefined) {
|
||||||
return 'do-not-update';
|
return 'do-not-update';
|
||||||
}
|
}
|
||||||
return billable.value ? 'billable' : 'non-billable';
|
return billable.value ? 'billable' : 'non-billable';
|
||||||
|
|||||||
Reference in New Issue
Block a user