Skip to content

Commit

Permalink
Merge pull request ahungry#306 from jeromeag/fix_305
Browse files Browse the repository at this point in the history
Update "labels" fields on org-jira-update-issue call. Fix ahungry#305.
  • Loading branch information
ahungry authored Jul 25, 2022
2 parents 7581ee2 + 1b0cfae commit 9510f20
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions org-jira.el
Original file line number Diff line number Diff line change
Expand Up @@ -2184,6 +2184,7 @@ otherwise it should return:
(ensure-on-issue-id-with-filename issue-id filename
;; Set up a bunch of values from the org content
(let* ((org-issue-components (org-jira-get-issue-val-from-org 'components))
(org-issue-labels (org-jira-get-issue-val-from-org 'labels))
(org-issue-description (org-trim (org-jira-get-issue-val-from-org 'description)))
(org-issue-priority (org-jira-get-issue-val-from-org 'priority))
(org-issue-type (org-jira-get-issue-val-from-org 'type))
Expand All @@ -2209,6 +2210,7 @@ otherwise it should return:
(or (org-jira-build-components-list
project-components
org-issue-components) []))
(cons 'labels (split-string org-issue-labels ",\\s *"))
(cons 'priority (org-jira-get-id-name-alist org-issue-priority
(jiralib-get-priorities)))
(cons 'description org-issue-description)
Expand Down

0 comments on commit 9510f20

Please sign in to comment.