mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-07-21 01:05:30 +00:00
Remove account type badge from modals.
This commit is contained in:
parent
307bd25e3e
commit
6cc67851b3
2 changed files with 0 additions and 28 deletions
|
|
@ -503,26 +503,12 @@ const SeriesModal = ({ series, opened, onClose }) => {
|
|||
<Badge color="blue" variant="light">
|
||||
{displaySeries.m3u_account.name}
|
||||
</Badge>
|
||||
{displaySeries.m3u_account.account_type && (
|
||||
<Badge color="gray" variant="outline" size="xs">
|
||||
{displaySeries.m3u_account.account_type === 'XC'
|
||||
? 'Xtream Codes'
|
||||
: 'Standard M3U'}
|
||||
</Badge>
|
||||
)}
|
||||
</Group>
|
||||
) : providers.length === 1 ? (
|
||||
<Group spacing="md">
|
||||
<Badge color="blue" variant="light">
|
||||
{providers[0].m3u_account.name}
|
||||
</Badge>
|
||||
{providers[0].m3u_account.account_type && (
|
||||
<Badge color="gray" variant="outline" size="xs">
|
||||
{providers[0].m3u_account.account_type === 'XC'
|
||||
? 'Xtream Codes'
|
||||
: 'Standard M3U'}
|
||||
</Badge>
|
||||
)}
|
||||
{providers[0].stream_id && (
|
||||
<Badge color="orange" variant="outline" size="xs">
|
||||
Stream {providers[0].stream_id}
|
||||
|
|
|
|||
|
|
@ -490,13 +490,6 @@ const VODModal = ({ vod, opened, onClose }) => {
|
|||
<Badge color="blue" variant="light">
|
||||
{providers[0].m3u_account.name}
|
||||
</Badge>
|
||||
{providers[0].m3u_account.account_type && (
|
||||
<Badge color="gray" variant="outline" size="xs">
|
||||
{providers[0].m3u_account.account_type === 'XC'
|
||||
? 'Xtream Codes'
|
||||
: 'Standard M3U'}
|
||||
</Badge>
|
||||
)}
|
||||
{providers[0].stream_id && (
|
||||
<Badge color="orange" variant="outline" size="xs">
|
||||
Stream {providers[0].stream_id}
|
||||
|
|
@ -536,13 +529,6 @@ const VODModal = ({ vod, opened, onClose }) => {
|
|||
<Badge color="blue" variant="light">
|
||||
{vod.m3u_account.name}
|
||||
</Badge>
|
||||
{vod.m3u_account.account_type && (
|
||||
<Badge color="gray" variant="outline" size="xs">
|
||||
{vod.m3u_account.account_type === 'XC'
|
||||
? 'Xtream Codes'
|
||||
: 'Standard M3U'}
|
||||
</Badge>
|
||||
)}
|
||||
</Group>
|
||||
</Box>
|
||||
)}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue