From 5a0c0eff9f0bb822a597164c2b87da7480ce4498 Mon Sep 17 00:00:00 2001 From: Dominik Pschenitschni Date: Sun, 3 Oct 2021 15:54:24 +0200 Subject: [PATCH 01/54] feat: implement modals with vue router 4 This is an implementation of the modals with the new possibilities of vue router 3. See: https://github.com/vuejs/vue-router/issues/703#issuecomment-865066913 for a better explanation and the linked example implementation: https://github.com/vuejs/vue-router-next/blob/master/e2e/modal/index.ts --- src/components/home/contentAuth.vue | 21 +- src/components/list/partials/filter-popup.vue | 3 +- .../misc/keyboard-shortcuts/index.vue | 38 ++-- .../misc/keyboard-shortcuts/shortcuts.js | 9 +- src/components/tasks/edit-task.vue | 11 +- src/components/tasks/partials/kanban-card.vue | 9 +- .../tasks/partials/singleTaskInList.vue | 13 +- src/router/index.ts | 184 ------------------ src/views/Home.vue | 7 + src/views/list/ShowList.vue | 23 ++- src/views/list/views/Gantt.vue | 18 +- src/views/list/views/Kanban.vue | 19 +- src/views/list/views/List.vue | 23 ++- src/views/list/views/Table.vue | 25 ++- src/views/tasks/TaskDetailViewModal.vue | 33 +--- 15 files changed, 152 insertions(+), 284 deletions(-) diff --git a/src/components/home/contentAuth.vue b/src/components/home/contentAuth.vue index d3f0dc8a9..3dac25ff4 100644 --- a/src/components/home/contentAuth.vue +++ b/src/components/home/contentAuth.vue @@ -20,8 +20,9 @@ - + + @@ -50,6 +51,24 @@ import {CURRENT_LIST, KEYBOARD_SHORTCUTS_ACTIVE, MENU_ACTIVE} from '@/store/muta import Navigation from '@/components/home/navigation.vue' import QuickActions from '@/components/quick-actions/quick-actions.vue' +function useRouteWithModal() { + const router = useRouter() + const route = useRoute() + const historyState = computed(() => route.fullPath && window.history.state) + + const routeWithModal = computed(() => { + if (historyState.value.backgroundView) { + return router.resolve(historyState.value.backgroundView) + } else { + return route + } + }) + + return { routeWithModal } +} + +useRouteWithModal() + const store = useStore() const background = computed(() => store.state.background) diff --git a/src/components/list/partials/filter-popup.vue b/src/components/list/partials/filter-popup.vue index efbfcbe3e..d4caf9b42 100644 --- a/src/components/list/partials/filter-popup.vue +++ b/src/components/list/partials/filter-popup.vue @@ -29,9 +29,10 @@ diff --git a/src/components/misc/keyboard-shortcuts/shortcuts.js b/src/components/misc/keyboard-shortcuts/shortcuts.js index bcc5014b4..06a3426c9 100644 --- a/src/components/misc/keyboard-shortcuts/shortcuts.js +++ b/src/components/misc/keyboard-shortcuts/shortcuts.js @@ -5,7 +5,6 @@ const ctrl = isAppleDevice() ? '⌘' : 'ctrl' export const KEYBOARD_SHORTCUTS = [ { title: 'keyboardShortcuts.general', - available: () => null, shortcuts: [ { title: 'keyboardShortcuts.toggleMenu', @@ -55,13 +54,7 @@ export const KEYBOARD_SHORTCUTS = [ }, { title: 'keyboardShortcuts.task.title', - available: (route) => [ - 'task.detail', - 'task.list.detail', - 'task.gantt.detail', - 'task.kanban.detail', - 'task.detail', - ].includes(route.name), + available: (route) => route.name === 'task.detail', shortcuts: [ { title: 'keyboardShortcuts.task.assign', diff --git a/src/components/tasks/edit-task.vue b/src/components/tasks/edit-task.vue index 90f6adb74..6ebe41106 100644 --- a/src/components/tasks/edit-task.vue +++ b/src/components/tasks/edit-task.vue @@ -67,7 +67,7 @@ {{ $t('task.openDetail') }} @@ -102,6 +102,15 @@ export default { taskEditTask: TaskModel, } }, + computed: { + taskDetailRoute() { + return { + name: 'task.detail', + params: { id: this.taskEditTask.id }, + state: { backgroundView: this.$router.currentRoute.value.fullPath }, + } + }, + }, components: { ColorPicker, Reminders, diff --git a/src/components/tasks/partials/kanban-card.vue b/src/components/tasks/partials/kanban-card.vue index 96e73a999..d0edae3e3 100644 --- a/src/components/tasks/partials/kanban-card.vue +++ b/src/components/tasks/partials/kanban-card.vue @@ -7,8 +7,8 @@ 'has-light-text': !colorIsDark(task.hexColor) && task.hexColor !== `#${task.defaultColor}` && task.hexColor !== task.defaultColor, }" :style="{'background-color': task.hexColor !== '#' && task.hexColor !== `#${task.defaultColor}` ? task.hexColor : false}" - @click.ctrl="() => toggleTaskDone(task)" @click.exact="() => $router.push({ name: 'task.kanban.detail', params: { id: task.id } })" + @click.ctrl="() => toggleTaskDone(task)" @click.meta="() => toggleTaskDone(task)" > @@ -112,6 +112,13 @@ export default { this.loadingInternal = false } }, + openTaskDetail() { + this.$router.push({ + name: 'task.detail', + params: { id: this.task.id }, + state: { backgroundView: this.$router.currentRoute.value.fullPath }, + }) + }, }, } diff --git a/src/components/tasks/partials/singleTaskInList.vue b/src/components/tasks/partials/singleTaskInList.vue index 9e955d5c8..168386e62 100644 --- a/src/components/tasks/partials/singleTaskInList.vue +++ b/src/components/tasks/partials/singleTaskInList.vue @@ -8,7 +8,7 @@ > @@ -126,10 +126,6 @@ export default { type: Boolean, default: false, }, - taskDetailRoute: { - type: String, - default: 'task.list.detail', - }, showList: { type: Boolean, default: false, @@ -167,6 +163,13 @@ export default { title: '', } : this.$store.state.currentList }, + taskDetailRoute() { + return { + name: 'task.detail', + params: { id: this.task.id }, + state: { backgroundView: this.$router.currentRoute.value.fullPath }, + } + }, }, methods: { async markAsDone(checked) { diff --git a/src/router/index.ts b/src/router/index.ts index 21e4a96a3..43340e7b0 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -13,7 +13,6 @@ import DataExportDownload from '../views/user/DataExportDownload' // Tasks import ShowTasksInRangeComponent from '../views/tasks/ShowTasksInRange' import LinkShareAuthComponent from '../views/sharing/LinkSharingAuth' -import TaskDetailViewModal from '../views/tasks/TaskDetailViewModal' import TaskDetailView from '../views/tasks/TaskDetailView' import ListNamespaces from '../views/namespaces/ListNamespaces' // Team Handling @@ -315,204 +314,21 @@ const router = createRouter({ path: '/lists/:listId/list', name: 'list.list', component: List, - children: [ - { - path: '/tasks/:id', - name: 'task.list.detail', - component: TaskDetailViewModal, - }, - { - path: '/lists/:listId/settings/edit', - name: 'list.list.settings.edit', - component: ListSettingEdit, - }, - { - path: '/lists/:listId/settings/background', - name: 'list.list.settings.background', - component: ListSettingBackground, - }, - { - path: '/lists/:listId/settings/duplicate', - name: 'list.list.settings.duplicate', - component: ListSettingDuplicate, - }, - { - path: '/lists/:listId/settings/share', - name: 'list.list.settings.share', - component: ListSettingShare, - }, - { - path: '/lists/:listId/settings/delete', - name: 'list.list.settings.delete', - component: ListSettingDelete, - }, - { - path: '/lists/:listId/settings/archive', - name: 'list.list.settings.archive', - component: ListSettingArchive, - }, - { - path: '/lists/:listId/settings/edit', - name: 'filter.list.settings.edit', - component: FilterEdit, - }, - { - path: '/lists/:listId/settings/delete', - name: 'filter.list.settings.delete', - component: FilterDelete, - }, - ], }, { path: '/lists/:listId/gantt', name: 'list.gantt', component: Gantt, - children: [ - { - path: '/tasks/:id', - name: 'task.gantt.detail', - component: TaskDetailViewModal, - }, - { - path: '/lists/:listId/settings/edit', - name: 'list.gantt.settings.edit', - component: ListSettingEdit, - }, - { - path: '/lists/:listId/settings/background', - name: 'list.gantt.settings.background', - component: ListSettingBackground, - }, - { - path: '/lists/:listId/settings/duplicate', - name: 'list.gantt.settings.duplicate', - component: ListSettingDuplicate, - }, - { - path: '/lists/:listId/settings/share', - name: 'list.gantt.settings.share', - component: ListSettingShare, - }, - { - path: '/lists/:listId/settings/delete', - name: 'list.gantt.settings.delete', - component: ListSettingDelete, - }, - { - path: '/lists/:listId/settings/archive', - name: 'list.gantt.settings.archive', - component: ListSettingArchive, - }, - { - path: '/lists/:listId/settings/edit', - name: 'filter.gantt.settings.edit', - component: FilterEdit, - }, - { - path: '/lists/:listId/settings/delete', - name: 'filter.gantt.settings.delete', - component: FilterDelete, - }, - ], }, { path: '/lists/:listId/table', name: 'list.table', component: Table, - children: [ - { - path: '/lists/:listId/settings/edit', - name: 'list.table.settings.edit', - component: ListSettingEdit, - }, - { - path: '/lists/:listId/settings/background', - name: 'list.table.settings.background', - component: ListSettingBackground, - }, - { - path: '/lists/:listId/settings/duplicate', - name: 'list.table.settings.duplicate', - component: ListSettingDuplicate, - }, - { - path: '/lists/:listId/settings/share', - name: 'list.table.settings.share', - component: ListSettingShare, - }, - { - path: '/lists/:listId/settings/delete', - name: 'list.table.settings.delete', - component: ListSettingDelete, - }, - { - path: '/lists/:listId/settings/archive', - name: 'list.table.settings.archive', - component: ListSettingArchive, - }, - { - path: '/lists/:listId/settings/edit', - name: 'filter.table.settings.edit', - component: FilterEdit, - }, - { - path: '/lists/:listId/settings/delete', - name: 'filter.table.settings.delete', - component: FilterDelete, - }, - ], }, { path: '/lists/:listId/kanban', name: 'list.kanban', component: Kanban, - children: [ - { - path: '/tasks/:id', - name: 'task.kanban.detail', - component: TaskDetailViewModal, - }, - { - path: '/lists/:listId/settings/edit', - name: 'list.kanban.settings.edit', - component: ListSettingEdit, - }, - { - path: '/lists/:listId/settings/background', - name: 'list.kanban.settings.background', - component: ListSettingBackground, - }, - { - path: '/lists/:listId/settings/duplicate', - name: 'list.kanban.settings.duplicate', - component: ListSettingDuplicate, - }, - { - path: '/lists/:listId/settings/share', - name: 'list.kanban.settings.share', - component: ListSettingShare, - }, - { - path: '/lists/:listId/settings/delete', - name: 'list.kanban.settings.delete', - component: ListSettingDelete, - }, - { - path: '/lists/:listId/settings/archive', - name: 'list.kanban.settings.archive', - component: ListSettingArchive, - }, - { - path: '/lists/:listId/settings/edit', - name: 'filter.kanban.settings.edit', - component: FilterEdit, - }, - { - path: '/lists/:listId/settings/delete', - name: 'filter.kanban.settings.delete', - component: FilterDelete, - }, - ], }, ], }, diff --git a/src/views/Home.vue b/src/views/Home.vue index f3d2b3ecb..d6a63f832 100644 --- a/src/views/Home.vue +++ b/src/views/Home.vue @@ -51,6 +51,10 @@ + + + + @@ -67,6 +71,9 @@ import {getHistory} from '@/modules/listHistory' import {parseDateOrNull} from '@/helpers/parseDateOrNull' import {formatDateShort, formatDateSince} from '@/helpers/time/formatDate' import {useDateTimeSalutation} from '@/composables/useDateTimeSalutation' +import TaskDetailViewModal, { useShowModal } from '@/views/tasks/TaskDetailViewModal.vue' + +const showTaskDetail = useShowModal() const welcome = useDateTimeSalutation() diff --git a/src/views/list/ShowList.vue b/src/views/list/ShowList.vue index d0c1d20fe..c5e41ff9e 100644 --- a/src/views/list/ShowList.vue +++ b/src/views/list/ShowList.vue @@ -8,28 +8,28 @@ {{ $t('list.list.title') }} {{ $t('list.gantt.title') }} {{ $t('list.table.title') }} {{ $t('list.kanban.title') }} @@ -69,6 +69,11 @@ export default { }, }, computed: { + currentListType() { + // default: 'list', + return '' + }, + // Computed property to let "listId" always have a value listId() { return typeof this.$route.params.listId === 'undefined' ? 0 : this.$route.params.listId @@ -113,11 +118,11 @@ export default { this.$store.commit('kanban/setListId', 0) } - // When clicking again on a list in the menu, there would be no list view selected which means no list - // at all. Users will then have to click on the list view menu again which is quite confusing. - if (this.$route.name === 'list.index') { - return this.replaceListView() - } + // // When clicking again on a list in the menu, there would be no list view selected which means no list + // // at all. Users will then have to click on the list view menu again which is quite confusing. + // if (this.$route.name === 'list.index') { + // return this.replaceListView() + // } // Don't load the list if we either already loaded it or aren't dealing with a list at all currently and // the currently loaded list has the right set. diff --git a/src/views/list/views/Gantt.vue b/src/views/list/views/Gantt.vue index b3628238b..4f89fbf70 100644 --- a/src/views/list/views/Gantt.vue +++ b/src/views/list/views/Gantt.vue @@ -52,13 +52,9 @@ :show-taskswithout-dates="showTaskswithoutDates" /> - - - - - - - + + + @@ -69,12 +65,20 @@ import flatPickr from 'vue-flatpickr-component' import Fancycheckbox from '../../../components/input/fancycheckbox' import {saveListView} from '@/helpers/saveListView' +import TaskDetailViewModal, { useShowModal } from '@/views/tasks/TaskDetailViewModal.vue' + export default { name: 'Gantt', components: { Fancycheckbox, flatPickr, GanttChart, + TaskDetailViewModal, + }, + setup() { + return { + showTaskDetail: useShowModal(), + } }, created() { // Save the current list view to local storage diff --git a/src/views/list/views/Kanban.vue b/src/views/list/views/Kanban.vue index 298ff48b5..bdb570fed 100644 --- a/src/views/list/views/Kanban.vue +++ b/src/views/list/views/Kanban.vue @@ -204,18 +204,12 @@ - - - - - - - + @@ -242,6 +236,7 @@ import Dropdown from '@/components/misc/dropdown.vue' import {getCollapsedBucketState, saveCollapsedBucketState} from '@/helpers/saveCollapsedBucketState' import {calculateItemPosition} from '../../../helpers/calculateItemPosition' import KanbanCard from '@/components/tasks/partials/kanban-card' +import TaskDetailViewModal, { useShowModal } from '@/views/tasks/TaskDetailViewModal.vue' const DRAG_OPTIONS = { // sortable options @@ -261,6 +256,7 @@ export default { Dropdown, FilterPopup, draggable, + TaskDetailViewModal, }, data() { return { @@ -296,6 +292,13 @@ export default { }, } }, + + setup() { + return { + showTaskDetail: useShowModal(), + } + }, + created() { // Save the current list view to local storage // We use local storage and not vuex here to make it persistent across reloads. diff --git a/src/views/list/views/List.vue b/src/views/list/views/List.vue index d61a39e8d..ff59e46e6 100644 --- a/src/views/list/views/List.vue +++ b/src/views/list/views/List.vue @@ -90,7 +90,6 @@ :disabled="!canWrite" :the-task="t" @taskUpdated="updateTasks" - task-detail-route="task.detail" > @@ -147,8 +143,8 @@ import FilterPopup from '@/components/list/partials/filter-popup.vue' import {HAS_TASKS} from '@/store/mutation-types' import Nothing from '@/components/misc/nothing.vue' import Pagination from '@/components/misc/pagination.vue' -import Popup from '@/components/misc/popup' -import { ALPHABETICAL_SORT } from '@/components/list/partials/filters' +import {ALPHABETICAL_SORT} from '@/components/list/partials/filters.vue' +import TaskDetailViewModal, { useShowModal } from '@/views/tasks/TaskDetailViewModal.vue' import draggable from 'vuedraggable' import {calculateItemPosition} from '../../../helpers/calculateItemPosition' @@ -192,7 +188,6 @@ export default { taskList, ], components: { - Popup, Nothing, FilterPopup, SingleTaskInList, @@ -200,7 +195,15 @@ export default { AddTask, draggable, Pagination, + TaskDetailViewModal, }, + + setup() { + return { + showTaskDetail: useShowModal(), + } + }, + created() { // Save the current list view to local storage // We use local storage and not vuex here to make it persistent across reloads. diff --git a/src/views/list/views/Table.vue b/src/views/list/views/Table.vue index b15b0a1b8..943dd7734 100644 --- a/src/views/list/views/Table.vue +++ b/src/views/list/views/Table.vue @@ -120,7 +120,7 @@ - + @@ -133,7 +133,7 @@ - {{ t.title }} + {{ t.title }} @@ -185,6 +185,8 @@ \ No newline at end of file diff --git a/src/components/modal/modal.vue b/src/components/modal/modal.vue index d218b8017..b7bb4083f 100644 --- a/src/components/modal/modal.vue +++ b/src/components/modal/modal.vue @@ -1,4 +1,5 @@ - + + \ No newline at end of file -- 2.40.1 From f3358269e5346ec53652a7d9f3643f739ea21809 Mon Sep 17 00:00:00 2001 From: Dominik Pschenitschni Date: Tue, 30 Nov 2021 20:48:48 +0100 Subject: [PATCH 12/54] fix task remove label test --- cypress/integration/task/task.spec.js | 6 ++--- src/components/tasks/partials/comments.vue | 4 +-- src/components/tasks/partials/description.vue | 4 +-- src/components/tasks/partials/editLabels.vue | 26 +++++++------------ src/views/tasks/TaskDetailView.vue | 2 ++ 5 files changed, 19 insertions(+), 23 deletions(-) diff --git a/cypress/integration/task/task.spec.js b/cypress/integration/task/task.spec.js index a6be81856..048455bcc 100644 --- a/cypress/integration/task/task.spec.js +++ b/cypress/integration/task/task.spec.js @@ -373,13 +373,13 @@ describe('Task', () => { cy.visit(`/tasks/${tasks[0].id}`) - cy.get('.task-view .details.labels-list .multiselect .input-wrapper') + cy.getSettled('.task-view .details.labels-list .multiselect .input-wrapper') .should('be.visible') .should('contain', labels[0].title) - cy.get('.task-view .details.labels-list .multiselect .input-wrapper') + cy.getSettled('.task-view .details.labels-list .multiselect .input-wrapper') .children() .first() - .get('a.delete') + .get('[data-cy="taskDetail.removeLabel"]') .click() cy.get('.global-notification') diff --git a/src/components/tasks/partials/comments.vue b/src/components/tasks/partials/comments.vue index 6565960cc..4aab00988 100644 --- a/src/components/tasks/partials/comments.vue +++ b/src/components/tasks/partials/comments.vue @@ -152,7 +152,7 @@ -- 2.40.1 From e837621ef8e7770acbc7f0af1f13e5610328c27d Mon Sep 17 00:00:00 2001 From: Dominik Pschenitschni Date: Sat, 4 Dec 2021 18:15:21 +0100 Subject: [PATCH 14/54] Try to cache list views --- src/components/home/contentAuth.vue | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/components/home/contentAuth.vue b/src/components/home/contentAuth.vue index d19d04878..ba69adacb 100644 --- a/src/components/home/contentAuth.vue +++ b/src/components/home/contentAuth.vue @@ -20,7 +20,12 @@ - + + + + + + -- 2.40.1 From e54d95802bb961d7a9b507ca08fa952dde1e20cd Mon Sep 17 00:00:00 2001 From: Dominik Pschenitschni Date: Tue, 7 Dec 2021 19:23:27 +0100 Subject: [PATCH 15/54] fix: closing modal --- src/views/tasks/TaskDetailViewModal.vue | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/src/views/tasks/TaskDetailViewModal.vue b/src/views/tasks/TaskDetailViewModal.vue index a240a2b09..913ed6593 100644 --- a/src/views/tasks/TaskDetailViewModal.vue +++ b/src/views/tasks/TaskDetailViewModal.vue @@ -12,11 +12,22 @@ -- 2.40.1 From 6d62ca1adaf4be5f94dac1a3840834e881b30aa3 Mon Sep 17 00:00:00 2001 From: Dominik Pschenitschni Date: Tue, 7 Dec 2021 19:40:50 +0100 Subject: [PATCH 16/54] fix: check now just once --- src/views/list/ListGantt.vue | 17 +++++++++++------ src/views/tasks/ShowTasks.vue | 16 +++++++++------- 2 files changed, 20 insertions(+), 13 deletions(-) diff --git a/src/views/list/ListGantt.vue b/src/views/list/ListGantt.vue index f5278a344..15b11747f 100644 --- a/src/views/list/ListGantt.vue +++ b/src/views/list/ListGantt.vue @@ -68,21 +68,26 @@ import { ref, computed } from 'vue' import flatPickr from 'vue-flatpickr-component' -import { i18n } from '@/i18n' -import { store } from '@/store' +import { useI18n } from 'vue-i18n' +import { useStore } from 'vuex' import ListWrapper from './ListWrapper' import GanttChart from '@/components/tasks/gantt-component' import Fancycheckbox from '@/components/input/fancycheckbox' +const DEFAULT_DAY_COUNT = 35 + const showTaskswithoutDates = ref(false) -const dayWidth = ref(35) -const dateFrom = ref(new Date((new Date()).setDate((new Date()).getDate() - 15))) -const dateTo = ref(new Date((new Date()).setDate((new Date()).getDate() + 30))) +const dayWidth = ref(DEFAULT_DAY_COUNT) +const now = ref(new Date()) +const dateFrom = ref(new Date((new Date()).setDate(now.value.getDate() - 15))) +const dateTo = ref(new Date((new Date()).setDate(now.value.getDate() + 30))) +const {t} = useI18n() +const {store} = useStore() const flatPickerConfig = computed(() => ({ - altFormat: i18n.global.t('date.altFormatShort'), + altFormat: t('date.altFormatShort'), altInput: true, dateFormat: 'Y-m-d', enableTime: false, diff --git a/src/views/tasks/ShowTasks.vue b/src/views/tasks/ShowTasks.vue index d4f06ba33..9b1399840 100644 --- a/src/views/tasks/ShowTasks.vue +++ b/src/views/tasks/ShowTasks.vue @@ -231,23 +231,25 @@ export default { }, setDatesToNextWeek() { - this.cStartDate = new Date() - this.cEndDate = new Date((new Date()).getTime() + 7 * 24 * 60 * 60 * 1000) + const now = new Date() + this.cStartDate = now + this.cEndDate = new Date(now.getTime() + 7 * 24 * 60 * 60 * 1000) this.showOverdue = false this.setDate() }, setDatesToNextMonth() { - this.cStartDate = new Date() - this.cEndDate = new Date((new Date()).setMonth((new Date()).getMonth() + 1)) + const now = new Date() + this.cStartDate = now + this.cEndDate = new Date((new Date()).setMonth(now.getMonth() + 1)) this.showOverdue = false this.setDate() }, showTodaysTasks() { - const d = new Date() - this.cStartDate = new Date() - this.cEndDate = new Date(d.setDate(d.getDate() + 1)) + const now = new Date() + this.cStartDate = now + this.cEndDate = new Date((new Date()).setDate(now.getDate() + 1)) this.showOverdue = true this.setDate() }, -- 2.40.1 From 5916a44724ca237daf13e6ac396f27451bfb5887 Mon Sep 17 00:00:00 2001 From: Dominik Pschenitschni Date: Fri, 10 Dec 2021 15:29:28 +0100 Subject: [PATCH 17/54] feat: provide listId prop via router --- src/components/home/contentAuth.vue | 29 +++- src/composables/taskList.js | 168 ++++++++++++------------ src/router/index.ts | 15 +++ src/views/list/ListGantt.vue | 21 ++- src/views/list/ListKanban.vue | 29 ++-- src/views/list/ListList.vue | 32 +++-- src/views/list/ListTable.vue | 138 +++++++------------ src/views/list/ListWrapper.vue | 39 +++--- src/views/tasks/TaskDetailView.vue | 12 +- src/views/tasks/TaskDetailViewModal.vue | 13 +- 10 files changed, 263 insertions(+), 233 deletions(-) diff --git a/src/components/home/contentAuth.vue b/src/components/home/contentAuth.vue index ba69adacb..48f6a3e84 100644 --- a/src/components/home/contentAuth.vue +++ b/src/components/home/contentAuth.vue @@ -44,7 +44,7 @@ + + \ No newline at end of file diff --git a/src/views/tasks/TaskDetailViewModal.vue b/src/views/tasks/TaskDetailViewModal.vue deleted file mode 100644 index f068d9305..000000000 --- a/src/views/tasks/TaskDetailViewModal.vue +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - \ No newline at end of file -- 2.40.1