Remove audio bitrate from basic stats.

This commit is contained in:
SergeantPanda 2025-07-29 15:12:14 -05:00
parent 44f8d45768
commit 7551869a2e

View file

@ -367,7 +367,7 @@ const ChannelStreams = ({ channel, isExpanded }) => {
)}
{/* Audio Information */}
{(stream.stream_stats.audio_codec || stream.stream_stats.audio_channels || stream.stream_stats.audio_bitrate) && (
{(stream.stream_stats.audio_codec || stream.stream_stats.audio_channels) && (
<>
<Text size="xs" c="dimmed" fw={500}>Audio:</Text>
{stream.stream_stats.audio_channels && (
@ -380,11 +380,6 @@ const ChannelStreams = ({ channel, isExpanded }) => {
{stream.stream_stats.audio_codec.toUpperCase()}
</Badge>
)}
{stream.stream_stats.audio_bitrate && (
<Badge size="xs" variant="light" color="violet" style={{ textTransform: 'none' }}>
{stream.stream_stats.audio_bitrate} kbps
</Badge>
)}
</>
)}