Skip to content
Snippets Groups Projects
Unverified Commit ecec332a authored by Nemanja Glumac's avatar Nemanja Glumac Committed by GitHub
Browse files

Fix `value` prop type for `ParameterFieldWidget` component (#32554)


* Fix `value` prop type for `ParameterFieldWidget` component

* Extend prop types

Co-authored-by: default avatarKamil Mielnik <kamil@kamilmielnik.com>

---------

Co-authored-by: default avatarKamil Mielnik <kamil@kamilmielnik.com>
parent a4c551d1
No related branches found
No related tags found
No related merge requests found
......@@ -26,7 +26,10 @@ const propTypes = {
parameters: PropTypes.array.isRequired,
placeholder: PropTypes.string.isRequired,
setValue: PropTypes.func.isRequired,
value: PropTypes.string,
value: PropTypes.oneOfType([
PropTypes.string,
PropTypes.arrayOf(PropTypes.string),
]),
question: PropTypes.object,
dashboard: PropTypes.object,
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment