mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-07-22 17:48:09 +00:00
Fixes channels not actually filtering based on selected group.
This commit is contained in:
parent
6d13aa5314
commit
66b95f2ef8
1 changed files with 1 additions and 1 deletions
|
|
@ -110,7 +110,7 @@ export default function TVChannelGuide({ startDate, endDate }) {
|
|||
// Apply channel group filter
|
||||
if (selectedGroupId !== 'all') {
|
||||
result = result.filter(
|
||||
(channel) => channel.channel_group?.id === parseInt(selectedGroupId)
|
||||
(channel) => channel.channel_group_id === parseInt(selectedGroupId)
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue