UBERF-9264: Fix set/unset parent issue (#7799)

Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
Andrey Sobolev
2025-01-27 15:14:54 +05:00
committed by GitHub
parent 83a912d716
commit 331aa7f78f
20 changed files with 133 additions and 51 deletions
+3 -1
View File
@@ -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'
}
+5 -2
View File
@@ -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,