diff --git a/ui/v2.5/src/components/Scenes/SceneCard.tsx b/ui/v2.5/src/components/Scenes/SceneCard.tsx index e2f773626..cbe3ee64e 100644 --- a/ui/v2.5/src/components/Scenes/SceneCard.tsx +++ b/ui/v2.5/src/components/Scenes/SceneCard.tsx @@ -373,9 +373,13 @@ const SceneCardImage = PatchComponent( ) : ( "" )} - {(file?.duration ?? 0) >= 1 - ? TextUtils.secondsToTimestamp(file?.duration ?? 0) - : ""} + {(file?.duration ?? 0) >= 1 ? ( + + {TextUtils.secondsToTimestamp(file?.duration ?? 0)} + + ) : ( + "" + )} ); }