Skip to content

Commit

Permalink
Pull request update/240103
Browse files Browse the repository at this point in the history
94678bf OS-7192. Use leaderboard dataset id to identify if
LeaderboardDatasetCard is selected
cec92bd OS-7184. Update vite libs to the latest version
  • Loading branch information
maxb-hystax authored Jan 3, 2024
2 parents c5cc47c + 94678bf commit e03f60b
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 27 deletions.
48 changes: 24 additions & 24 deletions jira_ui/ui/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions jira_ui/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "ui",
"version": "0.1.0",
"private": true,
"type": "module",
"dependencies": {
"@atlaskit/badge": "^15.1.16",
"@atlaskit/button": "^16.17.1",
Expand All @@ -22,8 +23,8 @@
"react-markdown": "^9.0.1",
"react-router-dom": "^6.19.0",
"remark-gfm": "^4.0.0",
"vite": "^5.0.2",
"vite-tsconfig-paths": "^4.2.1"
"vite": "^5.0.10",
"vite-tsconfig-paths": "^4.2.2"
},
"scripts": {
"start": "vite",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const LeaderboardDatasetsListSection = ({
>
{selectedLeaderboardDataset &&
leaderboardDatasets.map((leaderboardDataset) => {
const isSelected = leaderboardDataset.name === selectedLeaderboardDataset.name;
const isSelected = leaderboardDataset.id === selectedLeaderboardDataset.id;
return (
<LeaderboardDatasetCard
key={leaderboard.id}
Expand Down

0 comments on commit e03f60b

Please sign in to comment.