Skip to content

Commit

Permalink
fix(material/forms): Range Field template fix (formContol directive m…
Browse files Browse the repository at this point in the history
…issing in input)
  • Loading branch information
Marco Tozzi authored and mrumbrella committed Feb 27, 2023
1 parent dfaedb1 commit db8f7f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/material/forms/src/range-field.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
[max]="end"
[attr.aria-label]="name"
[attr.name]="name"
><input matSliderThumb [value]="ctrl.value" /></mat-slider>
><input matSliderThumb [value]="ctrl.value" [formControl]="ctrl" /></mat-slider>
<div class="ajf-range-label">
<label>{{ctrl.value}}</label>
</div>
Expand Down

0 comments on commit db8f7f3

Please sign in to comment.