)
1 parent b94be41 commit a8bf6b1Copy full SHA for a8bf6b1
main.js
@@ -2019,7 +2019,8 @@ function toDisplayPullRequestList (build, isGitHubRelease) {
2019
text += ' (';
2020
text += isGitHubRelease ? '`' : '<code>';
2021
text += [pullRequest.github.additions, -pullRequest.github.deletions].filter((item) => item !== 0).map((item) => item > 0 ? '+' + item : item.toString());
2022
- text += isGitHubRelease ? '`' : '</code>)'
+ text += isGitHubRelease ? '`' : '</code>'
2023
+ text += ')';
2024
}
2025
if (!nextPullRequest || !nextPullRequest.github || nextPullRequest.github.name !== pullRequest.github.name) {
2026
if (isGitHubRelease) {
0 commit comments