Skip to content

Commit

Permalink
Fix default status categories for imported project types
Browse files Browse the repository at this point in the history
Signed-off-by: Anna Khismatullina <[email protected]>
  • Loading branch information
akhismat committed Dec 27, 2024
1 parent b832cc1 commit 4f11737
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion packages/importer/src/importer/importer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,13 @@ export class WorkspaceImporter {
kind: 'both',
name: taskType.name,
ofClass: tracker.class.Issue,
statusCategories: [task.statusCategory.Active],
statusCategories: [
task.statusCategory.UnStarted,
task.statusCategory.ToDo,
task.statusCategory.Active,
task.statusCategory.Won,
task.statusCategory.Lost
],
statusClass: tracker.class.IssueStatus,
icon: tracker.icon.Issue,
color: 0,
Expand Down

0 comments on commit 4f11737

Please sign in to comment.