fix last tracked tasks empty state

This commit is contained in:
Gregor Vostrak
2024-04-18 01:13:26 +02:00
committed by Gregor Vostrak
parent 5b86c85aca
commit 4400741391
5 changed files with 66 additions and 7 deletions

View File

@@ -12,6 +12,7 @@ const props = withDefaults(
border: boolean;
}>(),
{
name: '',
size: 'base',
tag: 'div',
color: 'var(--theme-color-icon-default)',

View File

@@ -24,6 +24,7 @@ async function submit() {
project_id: props.projectId,
});
show.value = false;
taskName.value = '';
}
const taskNameInput = ref<HTMLInputElement | null>(null);