Skip to content

Commit

Permalink
Updated mds to v0.18.1
Browse files Browse the repository at this point in the history
- 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>
  • Loading branch information
Benjamin Perez committed Feb 13, 2024
1 parent ecc8c7a commit 1fbc8b1
Show file tree
Hide file tree
Showing 5 changed files with 451 additions and 439 deletions.
16 changes: 8 additions & 8 deletions web-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"local-storage-fallback": "^4.1.1",
"lodash": "^4.17.21",
"luxon": "^3.4.3",
"mds": "https://github.com/minio/mds.git#v0.15.0",
"mds": "https://github.com/minio/mds.git#v0.18.1",
"pdfjs-dist": "3.11.174",
"react": "^18.1.0",
"react-component-export-image": "^1.0.6",
Expand Down Expand Up @@ -63,12 +63,12 @@
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@playwright/test": "^1.38.1",
"@types/lodash": "^4.14.202",
"@types/luxon": "^3.3.7",
"@types/luxon": "^3.4.2",
"@types/minio": "7.1.1",
"@types/node": "18.16.0",
"@types/react": "18.2.43",
"@types/react": "18.2.55",
"@types/react-copy-to-clipboard": "^5.0.5",
"@types/react-dom": "18.2.17",
"@types/react-dom": "18.2.19",
"@types/react-redux": "^7.1.32",
"@types/react-virtualized": "^9.21.29",
"@types/react-window": "^1.8.6",
Expand All @@ -81,7 +81,7 @@
"customize-cra": "^1.0.0",
"minio": "^7.1.3",
"nyc": "^15.1.0",
"prettier": "3.2.4",
"prettier": "3.2.5",
"react-app-rewire-hot-loader": "^2.0.1",
"react-app-rewired": "^2.2.1",
"react-scripts": "5.0.1",
Expand All @@ -92,7 +92,7 @@
"resolutions": {
"nth-check": "^2.0.1",
"yaml": "^2.3.1",
"postcss": "^8.4.32",
"postcss": "^8.4.35",
"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",
Expand All @@ -104,10 +104,10 @@
"react-scripts/**/debug": "^3.1.0",
"recharts/**/d3-color": "^3.1.0",
"websocket/debug": "^3.1.0",
"fast-xml-parser": "^4.2.4",
"fast-xml-parser": "^4.3.4",
"semver": "^7.5.2",
"testcafe/**/tough-cookie": "^4.1.3",
"styled-components/**/@babel/traverse": "^7.23.6"
"styled-components/**/@babel/traverse": "^7.23.9"
},
"main": "index.js"
}
Original file line number Diff line number Diff line change
Expand Up @@ -220,10 +220,10 @@ const ListObjectsTable = () => {
selectedItems={selectedObjects}
onSelect={!anonymousMode ? selectListObjects : undefined}
customEmptyMessage={errorMessage}
sortConfig={{
sortEnabled={{
currentSort: currentSortField,
currentDirection: sortDirection,
triggerSort: sortChange,
onSortClick: sortChange,
}}
onSelectAll={selectAllItems}
rowStyle={({ index }) => {
Expand Down
4 changes: 2 additions & 2 deletions web-app/src/screens/Console/Logs/LogSearch/LogsSearchMain.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -452,10 +452,10 @@ const LogsSearchMain = () => {
customPaperHeight={
filterOpen ? "calc(100vh - 520px)" : "calc(100vh - 320px)"
}
sortConfig={{
sortEnabled={{
currentSort: "time",
currentDirection: sortOrder,
triggerSort: sortChange,
onSortClick: sortChange,
}}
infiniteScrollConfig={{
recordsCount: 1000000,
Expand Down
4 changes: 2 additions & 2 deletions web-app/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"downlevelIteration": true,
"noFallthroughCasesInSwitch": true,
"baseUrl": "./src",
"rootDir": "./src",
"rootDir": "./src"
},
"include": ["src"],
"include": ["src"]
}
Loading

0 comments on commit 1fbc8b1

Please sign in to comment.