Skip to content

Commit

Permalink
fix(player): replace small percent sign for slider values (#1215)
Browse files Browse the repository at this point in the history
  • Loading branch information
DerStimmler authored Mar 26, 2024
1 parent bedc6b2 commit 833f2e4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export class SliderValue extends Component<SliderValueProps> {
if (_format === 'percent') {
const range = max() - min();
const percent = (value / range) * 100;
return (this._format.percent ?? round)(percent, decimalPlaces()) + '';
return (this._format.percent ?? round)(percent, decimalPlaces()) + '%';
} else if (_format === 'time') {
return (this._format.time ?? formatTime)(value, {
padHrs: padHours(),
Expand Down

0 comments on commit 833f2e4

Please sign in to comment.