fix: lint

This commit is contained in:
kolaente 2023-08-29 12:46:30 +02:00
parent 20f61baf03
commit 99e2161c09
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 0 additions and 4 deletions

View File

@ -84,7 +84,6 @@
<script setup lang="ts">
import {computed} from 'vue'
import {useI18n} from 'vue-i18n'
import {getHexColor} from '@/models/task'
import type {ITask} from '@/modelTypes/ITask'
@ -108,12 +107,9 @@ const {
showProject?: boolean,
}>()
const {t} = useI18n({useScope: 'global'})
const projectStore = useProjectStore()
const project = computed(() => projectStore.projects[task.projectId])
const projectColor = computed(() => project.value ? project.value?.hexColor : '')
</script>
<style lang="scss" scoped>