Resolving the issue 342: we can't select an empty empty string or 0 as value

This commit is contained in:
= 2018-03-07 15:02:53 +01:00 committed by Josh Johnson
parent 1e6ae4e3f9
commit 1d9fd326f0

View file

@ -881,7 +881,7 @@ class Choices {
* @private
*/
_triggerChange(value) {
if (!value) {
if (value == 'undefined') {
return;
}