From 0e62bf0b7bdc260e882fd185492939cbaed04d56 Mon Sep 17 00:00:00 2001 From: MG12 Date: Sun, 13 Dec 2015 00:03:19 +0800 Subject: update test case and fix bugs --- src/module/Combobox.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/module/Combobox.jsx') diff --git a/src/module/Combobox.jsx b/src/module/Combobox.jsx index 27a8226..1e172a7 100644 --- a/src/module/Combobox.jsx +++ b/src/module/Combobox.jsx @@ -9,7 +9,7 @@ const formatOption = (option, disabledOptions) => { } let disabled = false; - if (disabledOptions.indexOf(option) >= 0) { + if (disabledOptions && disabledOptions.indexOf(option) >= 0) { disabled = true; } -- cgit v1.2.3