From 80b0b82e745ba863164d96028b504ff57db62e9c Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Sat, 2 Dec 2023 21:48:55 +0100 Subject: [PATCH] text change for simpler "New Task" and url input type --- src/modules/task/components/NewTaskForm.test.ts | 2 +- src/modules/task/components/TaskForm.vue | 6 +++--- src/views/task/NewTask.vue | 2 +- src/views/task/TaskView.vue | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/modules/task/components/NewTaskForm.test.ts b/src/modules/task/components/NewTaskForm.test.ts index 6c93ce0..2001dbf 100644 --- a/src/modules/task/components/NewTaskForm.test.ts +++ b/src/modules/task/components/NewTaskForm.test.ts @@ -7,6 +7,6 @@ describe('New Task Form', () => { it('displays New Task Form title', () => { const wrapper = mount(NewTaskVue, withPlugins()) - expect(wrapper.text()).toContain('Create a task') + expect(wrapper.text()).toContain('New task') }) }) diff --git a/src/modules/task/components/TaskForm.vue b/src/modules/task/components/TaskForm.vue index 42f4fad..ad723a3 100644 --- a/src/modules/task/components/TaskForm.vue +++ b/src/modules/task/components/TaskForm.vue @@ -85,7 +85,7 @@ const isValid = computed(() => title.value && steps.value.length > 0)