We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bfa9f54 commit 424ca71Copy full SHA for 424ca71
components/dash-core-components/src/fragments/Dropdown.react.js
@@ -40,7 +40,7 @@ const Dropdown = props => {
40
return [
41
sanitized,
42
createFilterOptions({
43
- options: options,
+ options: sanitized,
44
tokenizer: TOKENIZER,
45
}),
46
];
@@ -82,7 +82,7 @@ const Dropdown = props => {
82
useEffect(() => {
83
if (optionsCheck !== sanitizedOptions && !isNil(value)) {
84
const values = sanitizedOptions.map(option => option.value);
85
- if (multi) {
+ if (multi && Array.isArray(value)) {
86
const invalids = value.filter(v => !values.includes(v));
87
if (invalids.length) {
88
setProps({value: without(invalids, value)});
0 commit comments