From aa92091d2d2e5761b567dab97248cc3a5e911304 Mon Sep 17 00:00:00 2001 From: Alexander Clausen Date: Sun, 6 Jan 2019 18:07:38 +0100 Subject: [PATCH] IconInput value type should be string, not array --- src/components/inputs/IconInput.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/inputs/IconInput.jsx b/src/components/inputs/IconInput.jsx index daff7e7c..0cda657c 100644 --- a/src/components/inputs/IconInput.jsx +++ b/src/components/inputs/IconInput.jsx @@ -5,7 +5,7 @@ import AutocompleteInput from './AutocompleteInput' class IconInput extends React.Component { static propTypes = { - value: PropTypes.array, + value: PropTypes.string, icons: PropTypes.array, style: PropTypes.object, onChange: PropTypes.func.isRequired,