Skip to content

Commit

Permalink
fix(input): fix blank aria-describedBy (#3713)
Browse files Browse the repository at this point in the history
  • Loading branch information
mmalerba authored and tinayuangao committed Mar 27, 2017
1 parent 49c3675 commit cb85eeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/input/input-container.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export class MdErrorDirective { }
'[placeholder]': 'placeholder',
'[disabled]': 'disabled',
'[required]': 'required',
'[attr.aria-describedby]': 'ariaDescribedby',
'[attr.aria-describedby]': 'ariaDescribedby || null',
'(blur)': '_onBlur()',
'(focus)': '_onFocus()',
'(input)': '_onInput()',
Expand Down

0 comments on commit cb85eeb

Please sign in to comment.