From 623b562e8db416ab95e15b86338861f04051cab6 Mon Sep 17 00:00:00 2001 From: James Magahern Date: Fri, 27 Jun 2025 01:13:45 -0700 Subject: [PATCH] NowPlaying: appearance fixes for timestamp indicator --- frontend/src/components/NowPlaying.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/components/NowPlaying.tsx b/frontend/src/components/NowPlaying.tsx index a635664..40a92b1 100644 --- a/frontend/src/components/NowPlaying.tsx +++ b/frontend/src/components/NowPlaying.tsx @@ -63,12 +63,12 @@ const NowPlaying: React.FC = (props) => {
Screen Sharing
) : ( -
-
+
+
{props.songName}
{props.fileName}
-
+
{props.timePosition && props.duration ? (props.seekable ? `${formatTime(props.timePosition)} / ${formatTime(props.duration)}` : `${formatTime(props.timePosition)}` )