Skip to content

Commit

Permalink
[DT-400-npm]: Bump the npm-dependencies group with 7 updates (#2792)
Browse files Browse the repository at this point in the history
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: rushtong <grushton@broadinstitute.org>
  • Loading branch information
dependabot[bot] and rushtong authored Feb 24, 2025
1 parent 744f90f commit 4b47d25
Show file tree
Hide file tree
Showing 3 changed files with 102 additions and 61 deletions.
145 changes: 93 additions & 52 deletions package-lock.json

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

14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
"query-string": "9.1.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-dropzone": "14.3.5",
"react-dropzone": "14.3.8",
"react-ga4": "2.1.0",
"react-google-charts": "5.2.1",
"react-markdown": "9.0.3",
"react-markdown": "10.0.0",
"react-material-icon-svg": "3.20.0",
"react-modal": "3.16.3",
"react-paginating": "1.4.0",
Expand All @@ -32,7 +32,7 @@
"react-tooltip": "4.5.1",
"stackdriver-errors-js": "0.12.0",
"tss-react": "4.9.15",
"uuid": "11.0.5"
"uuid": "11.1.0"
},
"scripts": {
"analyze": "npm run build; source-map-explorer build/static/js/main.*",
Expand All @@ -48,8 +48,8 @@
"cypress:verify": "cypress verify"
},
"devDependencies": {
"@eslint/js": "9.20.0",
"@types/node": "^22.13.4",
"@eslint/js": "9.21.0",
"@types/node": "^22.13.5",
"@types/react-router-dom": "5.3.3",
"@vitejs/plugin-react": "4.3.4",
"buffer": "6.0.3",
Expand All @@ -59,14 +59,14 @@
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-react-refresh": "0.4.19",
"globals": "15.15.0",
"globals": "16.0.0",
"google-auth-library": "9.15.1",
"history": "5.3.0",
"prop-types": "15.8.1",
"source-map-explorer": "2.5.3",
"typescript": "5.7.3",
"typescript-eslint": "8.24.0",
"vite": "6.1.0"
"vite": "6.1.1"
},
"browserslist": [
">0.2%",
Expand Down
4 changes: 2 additions & 2 deletions src/components/Notification.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ export const Notification = (props) => {
break;
}
// eslint-disable-next-line react/no-children-prop
const content = <ReactMarkdown children={notificationData.message} className={style['underlined']}/>;
const content = <ReactMarkdown children={notificationData.message} />;
notificationDiv = <div
key={index}
className={'row no-margin alert alert-' + notificationData.level}>
<div style={{float: 'left'}}>{icon}</div>
<div>{content}</div>
<div className={style['underlined']}>{content}</div>
</div>;
}

Expand Down

0 comments on commit 4b47d25

Please sign in to comment.