We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8466d39 commit 58443f0Copy full SHA for 58443f0
ionic/components/select/select.ts
@@ -231,10 +231,8 @@ export class Select {
231
232
set value(val: any) {
233
// passed in value could be either an array, undefined or a string
234
- if (this._disabled) {
235
- this._values = (Array.isArray(val) ? val : isBlank(val) ? [] : [val]);
236
- this.updateOptions();
237
- }
+ this._values = (Array.isArray(val) ? val : isBlank(val) ? [] : [val]);
+ this.updateOptions();
238
}
239
240
get text() {
0 commit comments