feat: decouple views from projects #2217

Merged
konrad merged 97 commits from feature/decouple-views-from-projects into main 2024-03-19 19:16:14 +00:00
3 changed files with 1 additions and 4 deletions
Showing only changes of commit 5e9edef3b3 - Show all commits

View File

@ -19,7 +19,7 @@
</Fancycheckbox>
</div>
<FilterInputDocs/>
<FilterInputDocs />
<template
v-if="hasFooter"

View File

@ -277,7 +277,6 @@ import {RIGHTS as Rights} from '@/constants/rights'
import BucketModel from '@/models/bucket'
import type {IBucket} from '@/modelTypes/IBucket'
import type {IProject} from '@/modelTypes/IProject'
import type {ITask} from '@/modelTypes/ITask'
import {useBaseStore} from '@/stores/base'

View File

@ -1,5 +1,3 @@
import router from '@/router'
import type {IProject} from '@/modelTypes/IProject'
export type ProjectViewSettings = Record<IProject['id'], number>