chore: add types for template ref

This commit is contained in:
kolaente 2022-08-02 13:55:36 +02:00
parent 6975a2b286
commit 4be0977014
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 1 additions and 1 deletions

View File

@ -193,7 +193,7 @@ async function updateTask(e) {
}
const newTaskFieldActive = ref(false)
const newTaskTitleField = ref()
const newTaskTitleField = ref<HTMLInputElement | null>(null)
const newTaskTitle = ref('')
function showCreateTaskOrCreate() {