Skip to content

Commit c66b5f1

Browse files
committed
Fix the issue url link for Jira #350
Signed-off-by: tdruez <[email protected]>
1 parent a3013af commit c66b5f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

workflow/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def issue_url(self):
124124
elif self.platform == self.Platform.GITLAB:
125125
return f"https://gitlab.com/{self.repo}/-/issues/{self.issue_id}"
126126
elif self.platform == self.Platform.JIRA:
127-
return f"https://{self.repo}/browse/{self.issue_id}"
127+
return f"{self.repo}/browse/{self.issue_id}"
128128

129129
@property
130130
def icon_css_class(self):

0 commit comments

Comments
 (0)