Skip to content

Commit 5a270f3

Browse files
committed
Fix lint issue
1 parent 59847d9 commit 5a270f3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/lib/input/input-container.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,9 @@ export class MdInputContainer implements AfterViewInit, AfterContentInit, AfterC
396396
/** Whether the input container is in an error state. */
397397
_isErrorState(): boolean {
398398
const control = this._mdInputChild._ngControl;
399-
return this.errorStateMatcher ? this.errorStateMatcher(control) : this._defaultErrorStateMatcher(control);
399+
return this.errorStateMatcher
400+
? this.errorStateMatcher(control)
401+
: this._defaultErrorStateMatcher(control);
400402
}
401403

402404
/** Determines whether to display hints or errors. */

0 commit comments

Comments
 (0)