Create task fix (#666)

Signed-off-by: Denis Bykhov <80476319+BykhovDenis@users.noreply.github.com>
This commit is contained in:
Denis Bykhov 2021-12-17 16:21:22 +06:00 committed by GitHub
parent b6428b2651
commit c904fc7a6c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,7 +14,7 @@
-->
<script lang="ts">
import contact, { Employee } from '@anticrm/contact'
import { AttachedData, calcRank, Data, Doc, Ref, Space } from '@anticrm/core'
import { AttachedData, calcRank, Data, Doc, Ref, SortingOrder, Space } from '@anticrm/core'
import { generateId } from '@anticrm/core'
import { OK, Status } from '@anticrm/platform'
import { Card, getClient, UserBox } from '@anticrm/presentation'
@ -41,7 +41,9 @@
attachedTo: task.global.Task,
attachedToClass: task.class.Issue,
collection: 'tasks',
state: '' as Ref<State>
state: '' as Ref<State>,
doneState: null,
rank: ''
}
const dispatch = createEventDispatcher()