From 58a1304ddca4e8451c3d728cc3204554a181690a Mon Sep 17 00:00:00 2001 From: SergeantPanda Date: Sun, 22 Jun 2025 13:25:43 -0500 Subject: [PATCH] Always show 2 decimal places for FFmpeg speed. --- frontend/src/pages/Stats.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/pages/Stats.jsx b/frontend/src/pages/Stats.jsx index f6ec1392..6ee7b130 100644 --- a/frontend/src/pages/Stats.jsx +++ b/frontend/src/pages/Stats.jsx @@ -613,13 +613,13 @@ const ChannelCard = ({ )} {channel.ffmpeg_speed && ( - + = 1.0 ? "green" : "red"} > - {channel.ffmpeg_speed}x + {parseFloat(channel.ffmpeg_speed).toFixed(2)}x )}