Skip to content

Commit

Permalink
Fix regression
Browse files Browse the repository at this point in the history
  • Loading branch information
Sébastien LeBlanc committed Oct 23, 2023
1 parent 712f51c commit 3d116c1
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions src/components/TimeEntry.vue
Original file line number Diff line number Diff line change
Expand Up @@ -224,18 +224,7 @@ const emit = defineEmits<{
(e: 'add'): void;
}>();
const model = ref({
is_creating: true,
is_editing: false,
is_synced: false,
is_live_clocking: false,
start_time: '',
end_time: '',
duration: '',
date: '',
description: '',
project: null,
});
const model = ref(Object.create(null, Object.getOwnPropertyDescriptors(props.entry)));
const placeholder = ref('00:00:00');
Expand Down

0 comments on commit 3d116c1

Please sign in to comment.