Updated Console UI dependencies (#2787)

Signed-off-by: Benjamin Perez <benjamin@bexsoft.net>
This commit is contained in:
Alex
2023-04-25 00:19:22 -06:00
committed by GitHub
parent 8882f1da0e
commit 1477def4fe
3 changed files with 875 additions and 772 deletions

View File

@@ -7,12 +7,12 @@
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mui/icons-material": "^5.11.11",
"@mui/icons-material": "^5.11.16",
"@mui/lab": "^5.0.0-alpha.122",
"@mui/material": "^5.11.13",
"@mui/styles": "^5.11.13",
"@mui/material": "^5.12.1",
"@mui/styles": "^5.12.0",
"@mui/x-date-pickers": "^5.0.20",
"@reduxjs/toolkit": "^1.9.3",
"@reduxjs/toolkit": "^1.9.5",
"@uiw/react-textarea-code-editor": "^2.1.1",
"kbar": "^0.1.0-beta.39",
"local-storage-fallback": "^4.1.1",
@@ -26,12 +26,12 @@
"react-dropzone": "^14.2.3",
"react-grid-layout": "^1.2.0",
"react-redux": "^8.0.5",
"react-router-dom": "6.9.0",
"react-virtualized": "^9.22.3",
"react-window": "^1.8.8",
"react-window-infinite-loader": "^1.0.7",
"react-router-dom": "6.10.0",
"react-virtualized": "^9.22.5",
"react-window": "^1.8.9",
"react-window-infinite-loader": "^1.0.9",
"recharts": "^2.4.3",
"styled-components": "^5.3.9",
"styled-components": "^5.3.10",
"superagent": "^8.0.8",
"tinycolor2": "^1.6.0",
"websocket": "^1.0.31"
@@ -63,12 +63,12 @@
},
"proxy": "http://localhost:9090/",
"devDependencies": {
"@playwright/test": "^1.31.2",
"@types/lodash": "^4.14.191",
"@types/luxon": "^3.2.0",
"@types/minio": "^7.0.17",
"@types/node": "18.15.3",
"@types/react": "18.0.28",
"@playwright/test": "^1.32.3",
"@types/lodash": "^4.14.194",
"@types/luxon": "^3.3.0",
"@types/minio": "^7.0.18",
"@types/node": "18.16.0",
"@types/react": "18.0.38",
"@types/react-copy-to-clipboard": "^5.0.2",
"@types/react-dom": "18.0.11",
"@types/react-grid-layout": "^1.1.1",
@@ -83,19 +83,19 @@
"babel-plugin-istanbul": "^6.1.1",
"customize-cra": "^1.0.0",
"nyc": "^15.1.0",
"playwright": "^1.31.2",
"prettier": "2.8.4",
"playwright": "^1.31.3",
"prettier": "2.8.8",
"react-app-rewire-hot-loader": "^2.0.1",
"react-app-rewired": "^2.2.1",
"react-scripts": "5.0.1",
"testcafe": "^2.3.0",
"testcafe": "^2.5.0",
"typescript": "^4.4.3",
"minio": "^7.0.32"
"minio": "^7.0.33"
},
"resolutions": {
"nth-check": "^2.0.1",
"yaml": "^2.2.2",
"postcss": "^8.2.13",
"postcss": "^8.4.23",
"react-scripts/**/node-forge": "^1.3.0",
"react-scripts/**/async": "^2.6.4",
"react-scripts/workbox-webpack-plugin/workbox-build/@surma/rollup-plugin-off-main-thread/ejs/jake/async": "^2.6.4",
@@ -106,8 +106,8 @@
"react-scripts/**/json5": "^2.2.2",
"react-scripts/**/debug": "^3.1.0",
"recharts/**/d3-color": "^3.1.0",
"websocket/debug": "^3.1.0",
"minio/xml2js": "^0.5.0"
"minio/xml2js": "^0.5.0",
"websocket/debug": "^3.1.0"
},
"main": "index.js"
}

View File

@@ -59,7 +59,9 @@ const RewindEnable = ({
useEffect(() => {
if (rewindEnabled) {
setRewindEnableButton(true);
setDateSelected(DateTime.fromISO(dateRewind || DateTime.now().toISO()));
setDateSelected(
DateTime.fromISO(dateRewind || DateTime.now().toISO() || "")
);
}
}, [rewindEnabled, dateRewind]);

File diff suppressed because it is too large Load Diff