Skip to content

Commit a6f6a1d

Browse files
authored
Handle comma in matrix stage name (jenkinsci#959)
1 parent 083f162 commit a6f6a1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/frontend/pipeline-graph-view/pipeline-graph/main/support/convertLabelToTooltip.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export function convertLabelToTooltip(content: string): string | MatrixValue[] {
1111
if (content.startsWith("Matrix -")) {
1212
return content
1313
.replace("Matrix - ", "")
14-
.split(",")
14+
.split("',")
1515
.map((element) => {
1616
const result = element.split("=");
1717
return {

0 commit comments

Comments
 (0)