Skip to content

Commit 424ca71

Browse files
committed
Handle case where multi is true and value is not an array.
1 parent bfa9f54 commit 424ca71

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/dash-core-components/src/fragments/Dropdown.react.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const Dropdown = props => {
4040
return [
4141
sanitized,
4242
createFilterOptions({
43-
options: options,
43+
options: sanitized,
4444
tokenizer: TOKENIZER,
4545
}),
4646
];
@@ -82,7 +82,7 @@ const Dropdown = props => {
8282
useEffect(() => {
8383
if (optionsCheck !== sanitizedOptions && !isNil(value)) {
8484
const values = sanitizedOptions.map(option => option.value);
85-
if (multi) {
85+
if (multi && Array.isArray(value)) {
8686
const invalids = value.filter(v => !values.includes(v));
8787
if (invalids.length) {
8888
setProps({value: without(invalids, value)});

0 commit comments

Comments
 (0)