mirror of
https://github.com/maputnik/editor.git
synced 2026-08-25 22:47:39 +00:00
Merge pull request #411 from orangemug/fix/autocomplete-only-autocomplete-strings
Stop autocomplete crashing the editor
This commit is contained in:
@@ -69,8 +69,10 @@ class AutocompleteInput extends React.Component {
|
|||||||
getItemValue={(item) => item[0]}
|
getItemValue={(item) => item[0]}
|
||||||
onSelect={v => this.props.onChange(v)}
|
onSelect={v => this.props.onChange(v)}
|
||||||
onChange={(e, v) => this.props.onChange(v)}
|
onChange={(e, v) => this.props.onChange(v)}
|
||||||
shouldItemRender={(item, value) => {
|
shouldItemRender={(item, value="") => {
|
||||||
return item[0].toLowerCase().indexOf(value.toLowerCase()) > -1
|
if (typeof(value) === "string") {
|
||||||
|
return item[0].toLowerCase().indexOf(value.toLowerCase()) > -1
|
||||||
|
}
|
||||||
}}
|
}}
|
||||||
renderItem={(item, isHighlighted) => (
|
renderItem={(item, isHighlighted) => (
|
||||||
<div
|
<div
|
||||||
|
|||||||
Reference in New Issue
Block a user