diff --git a/Packages/ohif-core/client/components/base/mixins/select2.js b/Packages/ohif-core/client/components/base/mixins/select2.js index 03a8223ca..465a71842 100644 --- a/Packages/ohif-core/client/components/base/mixins/select2.js +++ b/Packages/ohif-core/client/components/base/mixins/select2.js @@ -53,7 +53,9 @@ OHIF.mixins.select2 = new OHIF.Mixin({ } // Check if there is already an empty option on items list - if (!_.findWhere(items, { value: '' })) { + // Note: If this is a multi-select input. Do not add a placeholder + const isMultiple = instance.data.options && instance.data.options.multiple; + if (!_.findWhere(items, { value: '' }) && isMultiple === false) { // Clone the current items const newItems = _.clone(items) || []; newItems.unshift({