Skip to content

Commit 1d19cc8

Browse files
authored
Use Jenkins pre-formatted log messages. (#133)
1 parent b6dc82f commit 1d19cc8

File tree

7 files changed

+86
-212
lines changed

7 files changed

+86
-212
lines changed

package-lock.json

Lines changed: 0 additions & 51 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
"@react-spring/web": "9.5.4",
3030
"@reacticons/ionicons": "6.0.4",
3131
"html-react-parser": "1.4.14",
32-
"linkifyjs": "3.0.0-beta.3",
3332
"react": "16.14.0",
3433
"react-dom": "16.14.0",
3534
"react-split-pane": "0.1.92"
@@ -39,7 +38,6 @@
3938
"@babel/preset-react": "7.18.6",
4039
"@types/enzyme": "3.10.12",
4140
"@types/jest": "26.0.24",
42-
"@types/linkifyjs": "2.1.4",
4341
"@types/node": "16.11.65",
4442
"@types/react": "16.14.32",
4543
"@types/react-dom": "16.9.16",

src/main/frontend/pipeline-console-view/pipeline-console/main/Ansi.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ export function makeReactChildren(tokenizedInput: string[] | Result[]) {
160160
// Need to output a <span> or plain text if there's no interesting current state
161161

162162
if (!currentState.setFG && !currentState.setBG) {
163-
result.push(codeOrString);
163+
result.push(<div dangerouslySetInnerHTML={{ __html: codeOrString }} />);
164164
} else {
165165
const classNames = [];
166166

src/main/frontend/pipeline-console-view/pipeline-console/main/Linkify.spec.tsx

Lines changed: 0 additions & 23 deletions
This file was deleted.

src/main/frontend/pipeline-console-view/pipeline-console/main/Linkify.tsx

Lines changed: 0 additions & 39 deletions
This file was deleted.

0 commit comments

Comments
 (0)