diff --git a/src/stores/tasks.ts b/src/stores/tasks.ts index 3d2534ae7..25bdb3f77 100644 --- a/src/stores/tasks.ts +++ b/src/stores/tasks.ts @@ -30,7 +30,7 @@ import {useKanbanStore} from '@/stores/kanban' import {useBaseStore} from '@/stores/base' import ProjectUserService from '@/services/projectUsers' -interface MatchedAssignees extends IUser { +interface MatchedAssignee extends IUser { match: string, } @@ -79,7 +79,7 @@ async function addLabelToTask(task: ITask, label: ILabel) { return response } -async function findAssignees(parsedTaskAssignees: string[], projectId: number): Promise { +async function findAssignees(parsedTaskAssignees: string[], projectId: number): Promise { if (parsedTaskAssignees.length <= 0) { return [] }