Skip to content

Commit

Permalink
Upgrade @openshift/console dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
alfonsomthd committed Nov 15, 2024
1 parent de9a89a commit e818152
Show file tree
Hide file tree
Showing 4 changed files with 265 additions and 27 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@
"@aws-sdk/client-s3": "3.667.0",
"@aws-sdk/lib-storage": "3.501.0",
"@aws-sdk/s3-request-presigner": "3.614.0",
"@openshift-console/dynamic-plugin-sdk": "1.3.0",
"@openshift-console/dynamic-plugin-sdk": "1.8.0",
"@openshift-console/dynamic-plugin-sdk-internal": "1.0.0",
"@openshift-console/dynamic-plugin-sdk-webpack": "1.1.1",
"@openshift-console/plugin-shared": "^0.0.1",
"@openshift-console/dynamic-plugin-sdk-webpack": "1.3.0",
"@openshift-console/plugin-shared": "^0.0.3",
"@patternfly/patternfly": "5.4.2",
"@patternfly/react-charts": "7.4.5",
"@patternfly/react-core": "5.4.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/odf/hooks/useNodesData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export const useNodesData = (): [NodeData[], boolean, any] => {
let nodesData = [];
// For data consistency, we must return nodes with their metrics.
if (nodes && utilization && loaded && !error) {
nodesData = nodes.map((node: NodeKind): NodeData => {
nodesData = nodes.map((node: Partial<NodeData>): NodeData => {
const metric = _.find(utilization.data.result, [
'metric.instance',
node.metadata.name,
Expand Down
2 changes: 1 addition & 1 deletion packages/shared/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"yup": "^0.32.11"
},
"peerDependencies": {
"@openshift-console/dynamic-plugin-sdk": "1.3.0",
"@openshift-console/dynamic-plugin-sdk": "1.8.0",
"@openshift-console/dynamic-plugin-sdk-internal": "1.0.0",
"i18next": "^20.2.1",
"react": "^17.0.1",
Expand Down
Loading

0 comments on commit e818152

Please sign in to comment.