Skip to content

Commit af8c067

Browse files
authored
Merge pull request #2648 from andrewbaldwin44/bugfix/2635
[Modern UI] HTML Entities are Incorrectly Escaped in Exceptions Table
2 parents 98a9bb5 + 867fe8b commit af8c067

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Diff for: locust/webui/dist/assets/index-fd3e763b.js renamed to locust/webui/dist/assets/index-941b6e82.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: locust/webui/dist/auth.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<meta name="theme-color" content="#000000" />
88

99
<title>Locust</title>
10-
<script type="module" crossorigin src="./assets/index-fd3e763b.js"></script>
10+
<script type="module" crossorigin src="./assets/index-941b6e82.js"></script>
1111
</head>
1212
<body>
1313
<div id="root"></div>

Diff for: locust/webui/dist/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<meta name="theme-color" content="#000000" />
88

99
<title>Locust</title>
10-
<script type="module" crossorigin src="./assets/index-fd3e763b.js"></script>
10+
<script type="module" crossorigin src="./assets/index-941b6e82.js"></script>
1111
</head>
1212
<body>
1313
<div id="root"></div>

Diff for: locust/webui/src/components/ExceptionsTable/ExceptionsTable.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import { ISwarmException } from 'types/ui.types';
66

77
const tableStructure = [
88
{ key: 'count', title: '# occurrences' },
9-
{ key: 'msg', title: 'Message' },
10-
{ key: 'traceback', title: 'Traceback' },
9+
{ key: 'msg', title: 'Message', markdown: true },
10+
{ key: 'traceback', title: 'Traceback', markdown: true },
1111
];
1212

1313
export function ExceptionsTable({ exceptions }: { exceptions: ISwarmException[] }) {

0 commit comments

Comments
 (0)