fix billable rate input field, fixes ST-203

This commit is contained in:
Gregor Vostrak
2024-06-02 19:02:22 +02:00
parent 22420439d9
commit ee6999af90
3 changed files with 28 additions and 21 deletions

View File

@@ -26,6 +26,7 @@ const project = ref<CreateProjectBody>({
name: '',
color: getRandomColor(),
client_id: null,
billable_rate: null,
});
async function submit() {
@@ -35,6 +36,7 @@ async function submit() {
name: '',
color: getRandomColor(),
client_id: null,
billable_rate: null,
};
}