We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bedc6b2 commit 833f2e4Copy full SHA for 833f2e4
1 file changed
packages/vidstack/src/components/ui/sliders/slider-value.ts
@@ -56,7 +56,7 @@ export class SliderValue extends Component<SliderValueProps> {
56
if (_format === 'percent') {
57
const range = max() - min();
58
const percent = (value / range) * 100;
59
- return (this._format.percent ?? round)(percent, decimalPlaces()) + '﹪';
+ return (this._format.percent ?? round)(percent, decimalPlaces()) + '%';
60
} else if (_format === 'time') {
61
return (this._format.time ?? formatTime)(value, {
62
padHrs: padHours(),
0 commit comments