Update context menu in the "CreateIssue" dialog (#1799)

Signed-off-by: Sergei Ogorelkov <sergei.ogorelkov@xored.com>
This commit is contained in:
Sergei Ogorelkov
2022-05-19 17:37:14 +07:00
committed by GitHub
parent fa22aa5f7e
commit 06254e720f
9 changed files with 144 additions and 55 deletions
+7 -1
View File
@@ -15,6 +15,7 @@
import { Employee } from '@anticrm/contact'
import type { AttachedDoc, Class, Doc, Markup, Ref, Space, Timestamp, Type } from '@anticrm/core'
import { Action, ActionCategory } from '@anticrm/view'
import type { Asset, IntlString, Plugin } from '@anticrm/platform'
import { plugin } from '@anticrm/platform'
import { AnyComponent } from '@anticrm/ui'
@@ -213,7 +214,6 @@ export default plugin(trackerId, {
Magnifier: '' as Asset,
Home: '' as Asset,
Labels: '' as Asset,
MoreActions: '' as Asset,
DueDate: '' as Asset,
Parent: '' as Asset,
@@ -239,5 +239,11 @@ export default plugin(trackerId, {
ProjectStatusPaused: '' as Asset,
ProjectStatusCompleted: '' as Asset,
ProjectStatusCanceled: '' as Asset
},
category: {
Tracker: '' as Ref<ActionCategory>
},
action: {
SetDueDate: '' as Ref<Action>
}
})