Skip to content

Commit

Permalink
Merge pull request #923 from notoraptor/dashboard-update-packages
Browse files Browse the repository at this point in the history
Dashboard: updates dependencies to try resolve dependabot issues
  • Loading branch information
bouthilx authored May 26, 2022
2 parents f4b0ade + 0373e66 commit 76804ee
Show file tree
Hide file tree
Showing 6 changed files with 1,433 additions and 1,106 deletions.
363 changes: 363 additions & 0 deletions dashboard/src/.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions dashboard/src/.yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
nodeLinker: node-modules

plugins:
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
spec: "@yarnpkg/plugin-interactive-tools"

yarnPath: .yarn/releases/yarn-3.1.1.cjs
50 changes: 25 additions & 25 deletions dashboard/src/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,38 +17,38 @@
"test": "react-scripts test"
},
"dependencies": {
"@carbon/grid": "10.17.0",
"@carbon/icons-react": "10.22.0",
"apollo-boost": "0.4.2",
"bootstrap": "^4.6.0",
"carbon-components": "^10.52.0",
"carbon-components-react": "^7.52.0",
"@carbon/grid": "10.43.1",
"@carbon/icons-react": "10.49.0",
"apollo-boost": "0.4.9",
"bootstrap": "^4.6.1",
"carbon-components": "^10.57.1",
"carbon-components-react": "^7.57.1",
"carbon-icons": "^7.0.7",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.5",
"graphql": "14.3.1",
"plotly.js": "^2.9.0",
"plotly.js-cartesian-dist-min": "^2.9.0",
"react": "16.10.0",
"react-apollo": "2.5.6",
"react-bootstrap": "^1.4.3",
"react-dom": "16.10.0",
"enzyme-adapter-react-16": "1.15.6",
"graphql": "14.7.0",
"plotly.js": "^2.12.1",
"plotly.js-cartesian-dist-min": "^2.12.1",
"react": "16.14.0",
"react-apollo": "2.5.8",
"react-bootstrap": "^1.6.5",
"react-dom": "16.14.0",
"react-plotly.js": "^2.5.1",
"react-router-dom": "5.0.0",
"react-scripts": "4.0.1",
"react-router-dom": "5.3.3",
"react-scripts": "4.0.3",
"react-sizeme": "^2.6.12"
},
"devDependencies": {
"@commitlint/cli": "7.5.2",
"@commitlint/config-conventional": "7.5.0",
"@testing-library/dom": "^8.11.3",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@commitlint/cli": "7.6.1",
"@commitlint/config-conventional": "7.6.0",
"@testing-library/dom": "^8.13.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^13.5.0",
"jest-canvas-mock": "^2.3.1",
"lint-staged": "8.1.5",
"prettier": "1.17.0",
"sass": "1.29.0",
"jest-canvas-mock": "^2.4.0",
"lint-staged": "8.2.1",
"prettier": "1.19.1",
"sass": "1.52.1",
"wait-for-expect": "3.0.2"
},
"eslintConfig": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,7 @@ class PlotGrid extends React.Component {
}
renderParallelCoordinates() {
if (this.state.parallel_coordinates === null)
return `Loading parallel coordinates plot for: ${
this.state.experiment
} ...`;
return `Loading parallel coordinates plot for: ${this.state.experiment} ...`;
if (this.state.parallel_coordinates === false) return 'Nothing to display';
return (
<ParallelCoordinatesPlotConst
Expand Down
4 changes: 1 addition & 3 deletions dashboard/src/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@ import { ApolloProvider } from 'react-apollo';
const client = new ApolloClient({
uri: 'https://api.github.com/graphql',
headers: {
authorization: `Bearer ${
process.env.REACT_APP_GITHUB_PERSONAL_ACCESS_TOKEN
}`,
authorization: `Bearer ${process.env.REACT_APP_GITHUB_PERSONAL_ACCESS_TOKEN}`,
},
});

Expand Down
Loading

0 comments on commit 76804ee

Please sign in to comment.