diff --git a/src/modules/record/components/TaskRecord.vue b/src/modules/record/components/TaskRecord.vue index f5bb7da..585b15b 100644 --- a/src/modules/record/components/TaskRecord.vue +++ b/src/modules/record/components/TaskRecord.vue @@ -97,4 +97,9 @@ const recordNotes = computed(() => recordStore.getRecordNotes(props.taskId)) display: flex; align-items: center; } + +table { + display: block; + overflow-x: auto; +} diff --git a/src/modules/task/components/TaskForm.vue b/src/modules/task/components/TaskForm.vue index 4638498..828878b 100644 --- a/src/modules/task/components/TaskForm.vue +++ b/src/modules/task/components/TaskForm.vue @@ -44,7 +44,7 @@ const exampleSteps: Stepable[] = [ id: createUuid(), title: 'commit, push and create the PR', estimation: 5 - }, + } ] const steps = ref(props.initialTask?.steps ?? exampleSteps) @@ -75,6 +75,8 @@ const saveTask = () => { return false } + +const isValid = computed(() => title.value && steps.value.length > 0)