Skip to content

Commit

Permalink
change type of wrap input
Browse files Browse the repository at this point in the history
  • Loading branch information
Ales Rechtorik committed Oct 22, 2016
1 parent 9955475 commit 80a477d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/input/input.ts
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ export class MdInput implements ControlValueAccessor, AfterContentInit, OnChange
@Input() autocapitalize: string;
@Input() cols: string;
@Input() rows: string;
@Input() wrap: string;
@Input() wrap: 'hard' | 'soft';
@Input() @BooleanFieldValue() autofocus: boolean = false;
@Input() @BooleanFieldValue() disabled: boolean = false;
@Input() id: string = `md-input-${nextUniqueId++}`;
Expand Down

0 comments on commit 80a477d

Please sign in to comment.