diff --git a/frontend/src/components/cards/StreamConnectionCard.jsx b/frontend/src/components/cards/StreamConnectionCard.jsx index e8b8a33b..6c5fc4fb 100644 --- a/frontend/src/components/cards/StreamConnectionCard.jsx +++ b/frontend/src/components/cards/StreamConnectionCard.jsx @@ -494,9 +494,8 @@ const StreamConnectionCard = ({ - - {channelName} - + {/* Stream Profile on right */} + - {/* Display M3U profile and current program */} + {/* Channel Name on left, M3U Profile on right */} - {currentProgram ? ( - - - - Now Playing: - - - {currentProgram.title} - - setIsProgramDescExpanded(!isProgramDescExpanded)} - > - {isProgramDescExpanded ? ( - - ) : ( - - )} - - - ) : ( - - )} + {channelName} + @@ -539,6 +516,30 @@ const StreamConnectionCard = ({ + {/* Display current program on its own line */} + {currentProgram && ( + + + + Now Playing: + + + {currentProgram.title} + + setIsProgramDescExpanded(!isProgramDescExpanded)} + > + {isProgramDescExpanded ? ( + + ) : ( + + )} + + + )} + {/* Expandable program description */} {currentProgram && isProgramDescExpanded &&