Skip to content

Commit

Permalink
fixed slider
Browse files Browse the repository at this point in the history
  • Loading branch information
hwellmann committed Aug 1, 2024
1 parent 7420ef1 commit ede325a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/app/component/tune-page/tune-page.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
</div>
<div class="tempo-slider">
<mat-label class="mat-body">Tempo</mat-label>
<mat-slider thumbLabel [(ngModel)]="player.tempo" [min]="50" [max]="200"><input matSliderThumb /></mat-slider>
<mat-slider thumbLabel [min]="50" [max]="200">
<input matSliderThumb [(ngModel)]="player.tempo"/>
</mat-slider>
</div>
</div>
<app-tune-view [tune]="tuneForDisplay()"></app-tune-view>
Expand Down

0 comments on commit ede325a

Please sign in to comment.