react-dom.development.js:58 Warning: GraphPanel: Support for defaultProps will be removed from function components in a future major release. Use JavaScript default parameters instead.
Motivation
Future proofs some code that used deprecated defaultProps (and has warnings in React 18) by using JS default parameters instead
Fixes some React 18 warnings noted in https://github.com/argoproj/argo-workflows/pull/13069#issuecomment-2159579279:
Motivation
Future proofs some code that used deprecated
defaultProps
(and has warnings in React 18) by using JS default parameters insteadModifications
GraphPanel.defaultProps.nodeSize
->defaultNodeSize
constKeyValueEditor.defaultProps.keyValues: {}
->keyValues = {}
default parameterVerification