diff --git a/ionic/components/select/select.ts b/ionic/components/select/select.ts index 5f7cbaefbc..f2cc1fe478 100644 --- a/ionic/components/select/select.ts +++ b/ionic/components/select/select.ts @@ -231,10 +231,8 @@ export class Select { set value(val: any) { // passed in value could be either an array, undefined or a string - if (this._disabled) { - this._values = (Array.isArray(val) ? val : isBlank(val) ? [] : [val]); - this.updateOptions(); - } + this._values = (Array.isArray(val) ? val : isBlank(val) ? [] : [val]); + this.updateOptions(); } get text() {