Skip to content

Commit

Permalink
Jira ticket links should point to UI, not API
Browse files Browse the repository at this point in the history
  • Loading branch information
mansam committed Dec 18, 2023
1 parent 829b523 commit d2abf03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tracker/jira.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ func (r *JiraConnector) Create(t *model.Ticket) (err error) {
t.Error = false
t.Message = ""
t.Reference = i.Key
t.Link = i.Self
t.Link = fmt.Sprintf("%s/browse/%s", r.tracker.URL, i.Key)
t.LastUpdated = time.Now()
metrics.IssuesExported.Inc()

Expand Down

0 comments on commit d2abf03

Please sign in to comment.