Skip to content

Commit

Permalink
[MM-1108]: review fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Kshitij-Katiyar committed Sep 23, 2024
1 parent c6d8aaf commit 59f9c7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/issue_parser.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ func parseJiraLinksToMarkdown(text string) string {
}

func mdKeySummaryLink(issue *jira.Issue, instance Instance) string {
return fmt.Sprintf("[%s: %s (%s)](%s%s)", issue.Key, truncate(issue.Fields.Summary, issueSummaryMaxLength), issue.Fields.Status.Name, instance.GetJiraBaseURL(), "/browse/"+issue.Key)
return fmt.Sprintf("[%s: %s (%s)](%s%s)", issue.Key, truncate(issue.Fields.Summary, maxIssueSummaryLength), issue.Fields.Status.Name, instance.GetJiraBaseURL(), "/browse/"+issue.Key)
}

func reporterSummary(reporter *jira.User) string {
Expand Down

0 comments on commit 59f9c7a

Please sign in to comment.