mirror of
https://github.com/hcengineering/platform.git
synced 2026-09-09 11:17:43 +02:00
UBERF-9264: Fix set/unset parent issue (#7799)
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
@@ -22,5 +22,7 @@ export enum TrackerEvents {
|
||||
|
||||
ProjectCreated = 'tracker.project.Created',
|
||||
ProjectDeleted = 'tracker.project.Deleted',
|
||||
ProjectArchived = 'tracker.project.Archived'
|
||||
ProjectArchived = 'tracker.project.Archived',
|
||||
|
||||
IssueParentUnset = 'tracker.issue.ParentUnset'
|
||||
}
|
||||
|
||||
@@ -432,6 +432,7 @@ const pluginState = plugin(trackerId, {
|
||||
Labels: '' as Asset,
|
||||
DueDate: '' as Asset,
|
||||
Parent: '' as Asset,
|
||||
UnsetParent: '' as Asset,
|
||||
Milestone: '' as Asset,
|
||||
IssueTemplates: '' as Asset,
|
||||
Start: '' as Asset,
|
||||
@@ -495,7 +496,8 @@ const pluginState = plugin(trackerId, {
|
||||
EditProject: '' as Ref<Action>,
|
||||
SetMilestone: '' as Ref<Action<Doc, any>>,
|
||||
SetLabels: '' as Ref<Action<Doc, any>>,
|
||||
EditRelatedTargets: '' as Ref<Action<Doc, any>>
|
||||
EditRelatedTargets: '' as Ref<Action<Doc, any>>,
|
||||
UnsetParent: '' as Ref<Action<Doc, any>>
|
||||
},
|
||||
project: {
|
||||
DefaultProject: '' as Ref<Project>
|
||||
@@ -516,7 +518,8 @@ const pluginState = plugin(trackerId, {
|
||||
Project: '' as IntlString,
|
||||
RelatedIssues: '' as IntlString,
|
||||
Issue: '' as IntlString,
|
||||
NewProject: '' as IntlString
|
||||
NewProject: '' as IntlString,
|
||||
UnsetParentIssue: '' as IntlString
|
||||
},
|
||||
extensions: {
|
||||
IssueListHeader: '' as ComponentExtensionId,
|
||||
|
||||
Reference in New Issue
Block a user