mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-08-03 07:12:30 +00:00
Remove audio bitrate from basic stats.
This commit is contained in:
parent
44f8d45768
commit
7551869a2e
1 changed files with 1 additions and 6 deletions
|
|
@ -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>
|
||||
)}
|
||||
</>
|
||||
)}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue