Skip to content

Commit

Permalink
fix billable status update dropdown
Browse files Browse the repository at this point in the history
  • Loading branch information
Onatcer committed Oct 9, 2024
1 parent 612f40a commit 26637e6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down

0 comments on commit 26637e6

Please sign in to comment.