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
+1
View File
@@ -29,6 +29,7 @@
"@anticrm/core": "~0.6.16",
"@anticrm/platform": "~0.6.6",
"@anticrm/ui": "~0.6.0",
"@anticrm/view": "~0.6.0",
"@anticrm/contact": "~0.6.5",
"@anticrm/chunter": "~0.6.1",
"@anticrm/attachment": "~0.6.1",
+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>
}
})