feat: replace our home-grown gantt implementation with ganttastic #2180

Merged
konrad merged 78 commits from feature/ganttastic into main 2022-10-27 16:03:27 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 4be0977014 - Show all commits

View File

@ -193,7 +193,7 @@ async function updateTask(e) {
}
const newTaskFieldActive = ref(false)
konrad marked this conversation as resolved Outdated
Add type: https://vuejs.org/guide/typescript/composition-api.html#typing-template-refs

Done.

Done.
const newTaskTitleField = ref()
const newTaskTitleField = ref<HTMLInputElement | null>(null)
const newTaskTitle = ref('')
function showCreateTaskOrCreate() {