Skip to content

Commit 1477def

Browse files
authored
Updated Console UI dependencies (#2787)
Signed-off-by: Benjamin Perez <benjamin@bexsoft.net>
1 parent 8882f1d commit 1477def

File tree

3 files changed

+885
-782
lines changed

3 files changed

+885
-782
lines changed

portal-ui/package.json

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
"dependencies": {
88
"@emotion/react": "^11.10.6",
99
"@emotion/styled": "^11.10.6",
10-
"@mui/icons-material": "^5.11.11",
10+
"@mui/icons-material": "^5.11.16",
1111
"@mui/lab": "^5.0.0-alpha.122",
12-
"@mui/material": "^5.11.13",
13-
"@mui/styles": "^5.11.13",
12+
"@mui/material": "^5.12.1",
13+
"@mui/styles": "^5.12.0",
1414
"@mui/x-date-pickers": "^5.0.20",
15-
"@reduxjs/toolkit": "^1.9.3",
15+
"@reduxjs/toolkit": "^1.9.5",
1616
"@uiw/react-textarea-code-editor": "^2.1.1",
1717
"kbar": "^0.1.0-beta.39",
1818
"local-storage-fallback": "^4.1.1",
@@ -26,12 +26,12 @@
2626
"react-dropzone": "^14.2.3",
2727
"react-grid-layout": "^1.2.0",
2828
"react-redux": "^8.0.5",
29-
"react-router-dom": "6.9.0",
30-
"react-virtualized": "^9.22.3",
31-
"react-window": "^1.8.8",
32-
"react-window-infinite-loader": "^1.0.7",
29+
"react-router-dom": "6.10.0",
30+
"react-virtualized": "^9.22.5",
31+
"react-window": "^1.8.9",
32+
"react-window-infinite-loader": "^1.0.9",
3333
"recharts": "^2.4.3",
34-
"styled-components": "^5.3.9",
34+
"styled-components": "^5.3.10",
3535
"superagent": "^8.0.8",
3636
"tinycolor2": "^1.6.0",
3737
"websocket": "^1.0.31"
@@ -63,12 +63,12 @@
6363
},
6464
"proxy": "http://localhost:9090/",
6565
"devDependencies": {
66-
"@playwright/test": "^1.31.2",
67-
"@types/lodash": "^4.14.191",
68-
"@types/luxon": "^3.2.0",
69-
"@types/minio": "^7.0.17",
70-
"@types/node": "18.15.3",
71-
"@types/react": "18.0.28",
66+
"@playwright/test": "^1.32.3",
67+
"@types/lodash": "^4.14.194",
68+
"@types/luxon": "^3.3.0",
69+
"@types/minio": "^7.0.18",
70+
"@types/node": "18.16.0",
71+
"@types/react": "18.0.38",
7272
"@types/react-copy-to-clipboard": "^5.0.2",
7373
"@types/react-dom": "18.0.11",
7474
"@types/react-grid-layout": "^1.1.1",
@@ -83,19 +83,19 @@
8383
"babel-plugin-istanbul": "^6.1.1",
8484
"customize-cra": "^1.0.0",
8585
"nyc": "^15.1.0",
86-
"playwright": "^1.31.2",
87-
"prettier": "2.8.4",
86+
"playwright": "^1.31.3",
87+
"prettier": "2.8.8",
8888
"react-app-rewire-hot-loader": "^2.0.1",
8989
"react-app-rewired": "^2.2.1",
9090
"react-scripts": "5.0.1",
91-
"testcafe": "^2.3.0",
91+
"testcafe": "^2.5.0",
9292
"typescript": "^4.4.3",
93-
"minio": "^7.0.32"
93+
"minio": "^7.0.33"
9494
},
9595
"resolutions": {
9696
"nth-check": "^2.0.1",
9797
"yaml": "^2.2.2",
98-
"postcss": "^8.2.13",
98+
"postcss": "^8.4.23",
9999
"react-scripts/**/node-forge": "^1.3.0",
100100
"react-scripts/**/async": "^2.6.4",
101101
"react-scripts/workbox-webpack-plugin/workbox-build/@surma/rollup-plugin-off-main-thread/ejs/jake/async": "^2.6.4",
@@ -106,8 +106,8 @@
106106
"react-scripts/**/json5": "^2.2.2",
107107
"react-scripts/**/debug": "^3.1.0",
108108
"recharts/**/d3-color": "^3.1.0",
109-
"websocket/debug": "^3.1.0",
110-
"minio/xml2js": "^0.5.0"
109+
"minio/xml2js": "^0.5.0",
110+
"websocket/debug": "^3.1.0"
111111
},
112112
"main": "index.js"
113113
}

portal-ui/src/screens/Console/Buckets/ListBuckets/Objects/ListObjects/RewindEnable.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,9 @@ const RewindEnable = ({
5959
useEffect(() => {
6060
if (rewindEnabled) {
6161
setRewindEnableButton(true);
62-
setDateSelected(DateTime.fromISO(dateRewind || DateTime.now().toISO()));
62+
setDateSelected(
63+
DateTime.fromISO(dateRewind || DateTime.now().toISO() || "")
64+
);
6365
}
6466
}, [rewindEnabled, dateRewind]);
6567

0 commit comments

Comments
 (0)