From 16b4840c0e2df0461998e3b464ee0a546173950d Mon Sep 17 00:00:00 2001 From: Mike Dearman <mdearman@libera.com> Date: Fri, 23 Sep 2016 17:23:11 -0400 Subject: [PATCH] Support selecting options with falsy values Previously you could not select an option which had the number 0 as its value, because there was a check which would detect it as an option without a value. There was a similar issue with selecting options which had a blank string as the value. This closes https://github.com/select2/select2/issues/4604. This closes https://github.com/select2/select2/issues/4516. This closes https://github.com/select2/select2/issues/3252. This closes https://github.com/select2/select2/issues/3519. This closes https://github.com/select2/select2/pull/4605. This closes https://github.com/select2/select2/pull/4517. --- src/js/select2/data/select.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/select2/data/select.js b/src/js/select2/data/select.js index ab504107..6865a47d 100644 --- a/src/js/select2/data/select.js +++ b/src/js/select2/data/select.js @@ -170,7 +170,7 @@ define([ } } - if (data.id) { + if (data.id !== undefined) { option.value = data.id; }