mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2024-12-29 08:40:27 +01:00
IconInput value type should be string, not array
This commit is contained in:
parent
98ded98583
commit
aa92091d2d
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@ import AutocompleteInput from './AutocompleteInput'
|
||||||
|
|
||||||
class IconInput extends React.Component {
|
class IconInput extends React.Component {
|
||||||
static propTypes = {
|
static propTypes = {
|
||||||
value: PropTypes.array,
|
value: PropTypes.string,
|
||||||
icons: PropTypes.array,
|
icons: PropTypes.array,
|
||||||
style: PropTypes.object,
|
style: PropTypes.object,
|
||||||
onChange: PropTypes.func.isRequired,
|
onChange: PropTypes.func.isRequired,
|
||||||
|
|
Loading…
Reference in a new issue