diff --git a/src/components/select/select.ts b/src/components/select/select.ts index 6a949f49..05802fb5 100755 --- a/src/components/select/select.ts +++ b/src/components/select/select.ts @@ -269,7 +269,9 @@ export class MdlSelectComponent extends SearchableComponent implements ControlVa } else { this.text = this.textByValue[this.stringifyValue(value)]||''; } - this.changeDetectionRef.detectChanges(); + if (!(this.changeDetectionRef)['destroyed']) { + this.changeDetectionRef.detectChanges(); + } if (this.optionComponents) { const _value = (!this.multiple && this.optionComponents.length === 1)