Skip to content

Commit 884f01a

Browse files
committed
Merge branch 'refactor-web' of https://github.com/nakrovati/js-framework-benchmark into nakrovati-refactor-web
2 parents 6c9f43f + 23ff8aa commit 884f01a

File tree

14 files changed

+334
-285
lines changed

14 files changed

+334
-285
lines changed

webdriver-ts-results/src/App.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import "./App.css";
2-
import { FrameworkType, knownIssues } from "@/Common";
2+
import { FrameworkType } from "@/Common";
3+
import { knownIssues } from "@/helpers/issues";
34
import ResultTable from "@/components/ResultTable";
45
import SelectionToolbar from "@/components/SelectionToolbar";
56
import { List, Typography } from "antd";
@@ -16,7 +17,7 @@ const KnownIssuesList = () => {
1617
renderItem={(issue) => (
1718
<List.Item>
1819
<Typography.Text className="known-issues__issue-code">
19-
<a href={issue.link}>{issue.issue}</a>
20+
<a href={issue.link}>{issue.number}</a>
2021
</Typography.Text>{" "}
2122
{issue.text}
2223
</List.Item>

0 commit comments

Comments
 (0)