1
0

chore: minor fixes

This commit is contained in:
Dominik Pschenitschni
2022-09-05 18:32:42 +02:00
parent 7d4ba6249e
commit 49f3b928cb
5 changed files with 7 additions and 6 deletions

View File

@ -39,7 +39,7 @@ import BaseButton from '@/components/base/BaseButton.vue'
import {includesById} from '@/helpers/utils'
import ListUserService from '@/services/listUsers'
import {success} from '@/message'
import type { IUser } from '@/models/user'
import type { IUser } from '@/modelTypes/IUser'
const props = defineProps({
taskId: {

View File

@ -43,12 +43,13 @@ import {type PropType, ref, computed, shallowReactive, watch} from 'vue'
import {useStore} from '@/store'
import {useI18n} from 'vue-i18n'
import LabelModel, { type ILabel } from '@/models/label'
import LabelModel from '@/models/label'
import LabelTaskService from '@/services/labelTask'
import {success} from '@/message'
import BaseButton from '@/components/base/BaseButton.vue'
import Multiselect from '@/components/input/multiselect.vue'
import type { ILabel } from '@/modelTypes/ILabel'
const props = defineProps({
modelValue: {