Skip to content

Commit

Permalink
fix(linear): Milestones are updated with Create Issue command (#12574)
Browse files Browse the repository at this point in the history
closes #12573
  • Loading branch information
jfkisafk committed May 27, 2024
1 parent f2937d6 commit fd7845a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions extensions/linear/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Linear Changelog

## [Bug Fixes] - 2024-05-25

- Fixed milestones to be updated with "Create Issue" command

## [Improvements] - 2024-05-14

- Notifications now support Projects (Updates, comments, reactions, added as member), Document Mentions and Bots (GitHub and GitLab)
Expand Down
3 changes: 2 additions & 1 deletion extensions/linear/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
"peduarte",
"pernielsentikaer",
"mil3na",
"clemb8"
"clemb8",
"stelo"
],
"categories": [
"Productivity"
Expand Down
2 changes: 1 addition & 1 deletion extensions/linear/src/components/CreateIssueForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ export default function CreateIssueForm(props: CreateIssueFormProps) {
...(values.assigneeId ? { assigneeId: values.assigneeId } : {}),
...(values.cycleId ? { cycleId: values.cycleId } : {}),
...(values.projectId ? { projectId: values.projectId } : {}),
...(values.milestoneId ? { milestoneId: values.milestoneId } : {}),
...(values.milestoneId ? { projectMilestoneId: values.milestoneId } : {}),
...(values.parentId ? { parentId: values.parentId } : {}),
priority: parseInt(values.priority),
};
Expand Down

0 comments on commit fd7845a

Please sign in to comment.