Skip to content

Commit 7ac0a74

Browse files
authored
Don't escape commit messages for changes run details card tooltip (jenkinsci#802)
1 parent 2432b4f commit 7ac0a74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/io/jenkins/plugins/pipelinegraphview/cards/items/ChangesRunDetailsItem.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public static Optional<RunDetailsItem> get(WorkflowRun run) {
2929
toolTipBuilder.append("%s by %s".formatted(commitId, author));
3030
toolTipBuilder.append(System.lineSeparator());
3131
}
32-
toolTipBuilder.append(changeEntry.getMsgEscaped());
32+
toolTipBuilder.append(changeEntry.getMsg());
3333

3434
int numEntries = changeEntries.size();
3535
if (numEntries > 1) {

0 commit comments

Comments
 (0)