mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
wrap console log in if
This commit is contained in:
@@ -491,7 +491,7 @@ export class TextInputElement {
|
||||
}
|
||||
|
||||
ngAfterContentChecked() {
|
||||
console.log("Value", this.ngControl.value);
|
||||
if (this.ngControl) console.log("Value", this.ngControl.value);
|
||||
if (this.ngControl) this.value = this.ngControl.value;
|
||||
this.wrapper && this.wrapper.hasValue(this.value);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user