From 58443f0ff3bacecdb51ef68a796cfed951fd904e Mon Sep 17 00:00:00 2001 From: Adam Bradley Date: Thu, 28 Jan 2016 21:30:58 -0600 Subject: [PATCH] fix(select): always update value and text --- ionic/components/select/select.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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() {