We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2fd31f commit d239584Copy full SHA for d239584
pkg/jira/jira.go
@@ -103,5 +103,5 @@ func (c *Client) FindIssues(ctx context.Context, jql string) (*SearchResponse, e
103
104
// LinkForIssue returns a link to the given issue
105
func (c *Client) LinkForIssue(i *Issue) string {
106
- return fmt.Sprintf("https://%s/issues/%s", c.server, i.Key)
+ return fmt.Sprintf("https://%s/browse/%s", c.server, i.Key)
107
}
0 commit comments