allow null value to be passed to parent of md-select (#338)

#333
This commit is contained in:
Kory Prince 2017-01-12 09:34:39 -06:00 committed by Marcos Moura
parent b673a871cd
commit 324a08b7e1

View file

@ -129,7 +129,7 @@
this.selectedValue = output.value;
this.selectedText = output.text;
if (this.selectedText && this.parentContainer) {
if (this.parentContainer) {
this.parentContainer.setValue(this.selectedText);
}
},