Skip to content

Commit

Permalink
Upgraded deps (#685)
Browse files Browse the repository at this point in the history
  • Loading branch information
siefkenj authored Aug 15, 2022
1 parent 16e0097 commit 1dec73b
Show file tree
Hide file tree
Showing 3 changed files with 171 additions and 136 deletions.
50 changes: 25 additions & 25 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,55 +6,55 @@
"private": true,
"dependencies": {
"@types/classnames": "^2.3.1",
"@types/file-saver": "^2.0.3",
"@types/fuzzyset": "^1.0.3",
"@types/file-saver": "^2.0.5",
"@types/fuzzyset": "^1.0.4",
"@types/jest": "^26.0.24",
"@types/jszip": "^3.4.1",
"@types/node": "^14.17.33",
"@types/react": "^17.0.34",
"@types/node": "^14.18.22",
"@types/react": "^17.0.48",
"@types/react-bootstrap-typeahead": "^5.1.8",
"@types/react-copy-to-clipboard": "^5.0.2",
"@types/react-custom-scrollbars": "^4.0.9",
"@types/react-dom": "^17.0.11",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/react-custom-scrollbars": "^4.0.10",
"@types/react-dom": "^17.0.17",
"@types/react-notification-system-redux": "^1.1.7",
"@types/react-redux": "^7.1.20",
"@types/react-router-dom": "^5.3.2",
"@types/react-table": "^7.7.8",
"@types/react-router-dom": "^5.3.3",
"@types/react-table": "^7.7.12",
"@types/react-virtualized-auto-sizer": "^1.0.1",
"@types/react-window": "^1.8.5",
"@types/route-parser": "^0.1.3",
"bootstrap": "^4.6.1",
"chrono-node": "^2.3.2",
"@types/route-parser": "^0.1.4",
"bootstrap": "^4.6.2",
"chrono-node": "^2.3.9",
"classnames": "^2.3.1",
"file-saver": "^2.0.5",
"fuzzyset": "^1.0.6",
"jszip": "^3.7.1",
"fuzzyset": "^1.0.7",
"jszip": "^3.10.0",
"react": "^17.0.2",
"react-bootstrap": "^1.6.4",
"react-bootstrap-typeahead": "^5.2.1",
"react-bootstrap": "^1.6.5",
"react-bootstrap-typeahead": "^5.2.2",
"react-copy-to-clipboard": "^5.0.4",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "^17.0.2",
"react-error-boundary": "^3.1.4",
"react-icons": "^4.3.1",
"react-icons": "^4.4.0",
"react-notification-system-redux": "^2.0.1",
"react-redux": "^7.2.6",
"react-router-dom": "^5.3.0",
"react-redux": "^7.2.8",
"react-router-dom": "^5.3.3",
"react-scripts": "4.0.3",
"react-table": "^7.7.0",
"react-table": "^7.8.0",
"react-virtualized-auto-sizer": "^1.0.6",
"react-window": "^1.8.6",
"redux": "^4.1.2",
"react-window": "^1.8.7",
"redux": "^4.2.0",
"redux-create-reducer": "^2.0.1",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.4.0",
"redux-thunk": "^2.4.1",
"reselect": "^4.1.2",
"route-parser": "^0.0.5",
"survey-react": "^1.8.77",
"swagger-ui-react": "3.24.3",
"typescript": "^4.4.4",
"typescript": "^4.7.4",
"uuid-random": "^1.3.2",
"xlsx": "^0.17.4"
"xlsx": "^0.17.5"
},
"scripts": {
"start": "PORT=8000 REACT_APP_DEV_FEATURES=true react-scripts start",
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/diff-table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export function createDiffCell<T extends object>({
accessor,
Cell,
}: Column<T> & { Cell?: any }) {
const accessors = ("" + accessor).split(".");
const accessors = String(accessor).split(".");
function get(obj: any) {
let ret = obj;
for (const key of accessors) {
Expand Down
Loading

0 comments on commit 1dec73b

Please sign in to comment.