Skip to content

Commit 23e01b2

Browse files
authored
Updated mds to v0.18.1 (#3233)
- Updated other project dependencies - Fixed an issue while pressing enter key in a page that contains a select box - Fixed an issue while selecting an autocomplete option from an input box Signed-off-by: Benjamin Perez <benjamin@bexsoft.net>
1 parent ecc8c7a commit 23e01b2

File tree

5 files changed

+451
-439
lines changed

5 files changed

+451
-439
lines changed

web-app/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"local-storage-fallback": "^4.1.1",
1212
"lodash": "^4.17.21",
1313
"luxon": "^3.4.3",
14-
"mds": "https://github.com/minio/mds.git#v0.15.0",
14+
"mds": "https://github.com/minio/mds.git#v0.18.1",
1515
"pdfjs-dist": "3.11.174",
1616
"react": "^18.1.0",
1717
"react-component-export-image": "^1.0.6",
@@ -63,12 +63,12 @@
6363
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
6464
"@playwright/test": "^1.38.1",
6565
"@types/lodash": "^4.14.202",
66-
"@types/luxon": "^3.3.7",
66+
"@types/luxon": "^3.4.2",
6767
"@types/minio": "7.1.1",
6868
"@types/node": "18.16.0",
69-
"@types/react": "18.2.43",
69+
"@types/react": "18.2.55",
7070
"@types/react-copy-to-clipboard": "^5.0.5",
71-
"@types/react-dom": "18.2.17",
71+
"@types/react-dom": "18.2.19",
7272
"@types/react-redux": "^7.1.32",
7373
"@types/react-virtualized": "^9.21.29",
7474
"@types/react-window": "^1.8.6",
@@ -81,7 +81,7 @@
8181
"customize-cra": "^1.0.0",
8282
"minio": "^7.1.3",
8383
"nyc": "^15.1.0",
84-
"prettier": "3.2.4",
84+
"prettier": "3.2.5",
8585
"react-app-rewire-hot-loader": "^2.0.1",
8686
"react-app-rewired": "^2.2.1",
8787
"react-scripts": "5.0.1",
@@ -92,7 +92,7 @@
9292
"resolutions": {
9393
"nth-check": "^2.0.1",
9494
"yaml": "^2.3.1",
95-
"postcss": "^8.4.32",
95+
"postcss": "^8.4.35",
9696
"react-scripts/**/node-forge": "^1.3.0",
9797
"react-scripts/**/async": "^2.6.4",
9898
"react-scripts/workbox-webpack-plugin/workbox-build/@surma/rollup-plugin-off-main-thread/ejs/jake/async": "^2.6.4",
@@ -104,10 +104,10 @@
104104
"react-scripts/**/debug": "^3.1.0",
105105
"recharts/**/d3-color": "^3.1.0",
106106
"websocket/debug": "^3.1.0",
107-
"fast-xml-parser": "^4.2.4",
107+
"fast-xml-parser": "^4.3.4",
108108
"semver": "^7.5.2",
109109
"testcafe/**/tough-cookie": "^4.1.3",
110-
"styled-components/**/@babel/traverse": "^7.23.6"
110+
"styled-components/**/@babel/traverse": "^7.23.9"
111111
},
112112
"main": "index.js"
113113
}

web-app/src/screens/Console/Buckets/ListBuckets/Objects/ListObjects/ListObjectsTable.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -220,10 +220,10 @@ const ListObjectsTable = () => {
220220
selectedItems={selectedObjects}
221221
onSelect={!anonymousMode ? selectListObjects : undefined}
222222
customEmptyMessage={errorMessage}
223-
sortConfig={{
223+
sortEnabled={{
224224
currentSort: currentSortField,
225225
currentDirection: sortDirection,
226-
triggerSort: sortChange,
226+
onSortClick: sortChange,
227227
}}
228228
onSelectAll={selectAllItems}
229229
rowStyle={({ index }) => {

web-app/src/screens/Console/Logs/LogSearch/LogsSearchMain.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -452,10 +452,10 @@ const LogsSearchMain = () => {
452452
customPaperHeight={
453453
filterOpen ? "calc(100vh - 520px)" : "calc(100vh - 320px)"
454454
}
455-
sortConfig={{
455+
sortEnabled={{
456456
currentSort: "time",
457457
currentDirection: sortOrder,
458-
triggerSort: sortChange,
458+
onSortClick: sortChange,
459459
}}
460460
infiniteScrollConfig={{
461461
recordsCount: 1000000,

web-app/tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"downlevelIteration": true,
1818
"noFallthroughCasesInSwitch": true,
1919
"baseUrl": "./src",
20-
"rootDir": "./src",
20+
"rootDir": "./src"
2121
},
22-
"include": ["src"],
22+
"include": ["src"]
2323
}

0 commit comments

Comments
 (0)