File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -448,7 +448,9 @@ ${renderedGraphIssues}
448
448
}
449
449
renderIssue(issue) {
450
450
const title = issue.getWrappedTitle();
451
- const linkedTitle = issue.url ? `<a href='${issue.url}' style='text-decoration:none;color: inherit;'>${title}</a>` : title;
451
+ const linkedTitle = issue.url
452
+ ? `<a href='${issue.url}' style='text-decoration:none;color: inherit;'>${title}</a>`
453
+ : title;
452
454
return `${issue.nodeId}("${linkedTitle}"):::${issue.status};`;
453
455
}
454
456
renderDependencies(dependencies) {
Original file line number Diff line number Diff line change @@ -62,7 +62,9 @@ ${renderedGraphIssues}
62
62
63
63
private renderIssue ( issue : MermaidNode ) : string {
64
64
const title = issue . getWrappedTitle ( ) ;
65
- const linkedTitle = issue . url ? `<a href='${ issue . url } ' style='text-decoration:none;color: inherit;'>${ title } </a>` : title ;
65
+ const linkedTitle = issue . url
66
+ ? `<a href='${ issue . url } ' style='text-decoration:none;color: inherit;'>${ title } </a>`
67
+ : title ;
66
68
return `${ issue . nodeId } ("${ linkedTitle } "):::${ issue . status } ;` ;
67
69
}
68
70
You can’t perform that action at this time.
0 commit comments