mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-01-23 18:54:58 +00:00
Fixed channels not showing if they were mapped to the same epg id.
This commit is contained in:
parent
307728b7bc
commit
5a844e4aaa
1 changed files with 11 additions and 7 deletions
|
|
@ -851,10 +851,10 @@ export default function TVChannelGuide({ startDate, endDate }) {
|
|||
{(searchQuery !== '' ||
|
||||
selectedGroupId !== 'all' ||
|
||||
selectedProfileId !== 'all') && (
|
||||
<Button variant="subtle" onClick={clearFilters} size="sm" compact>
|
||||
Clear Filters
|
||||
</Button>
|
||||
)}
|
||||
<Button variant="subtle" onClick={clearFilters} size="sm" compact>
|
||||
Clear Filters
|
||||
</Button>
|
||||
)}
|
||||
|
||||
<Text size="sm" color="dimmed">
|
||||
{filteredChannels.length}{' '}
|
||||
|
|
@ -1209,9 +1209,13 @@ export default function TVChannelGuide({ startDate, endDate }) {
|
|||
paddingLeft: 0, // Remove any padding that might push content
|
||||
}}
|
||||
>
|
||||
{channelPrograms.map((prog) =>
|
||||
renderProgram(prog, start)
|
||||
)}
|
||||
{channelPrograms.map((program) => {
|
||||
return (
|
||||
<div key={`${channel.id}-${program.id}-${program.start_time}`}>
|
||||
{renderProgram(program, start)}
|
||||
</div>
|
||||
);
|
||||
})}
|
||||
</Box>
|
||||
</Box>
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue