From d2abf03fef2284d9765d7b5d6736718c9581e6e2 Mon Sep 17 00:00:00 2001 From: Sam Lucidi Date: Mon, 18 Dec 2023 16:54:44 -0500 Subject: [PATCH] Jira ticket links should point to UI, not API Fixes https://issues.redhat.com/browse/MTA-1883 Signed-off-by: Sam Lucidi --- tracker/jira.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tracker/jira.go b/tracker/jira.go index 8e0a6be62..ff3a22dfa 100644 --- a/tracker/jira.go +++ b/tracker/jira.go @@ -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()