diff --git a/CHANGELOG.md b/CHANGELOG.md index 47808842..ae7addeb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -34,6 +34,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed +- Channels page default splitter ratio changed from 50/50 to 60/40 (channels/streams) so all channel action buttons are visible without scrolling on 1080p displays. - Frontend component refactoring and cleanup — Thanks [@nick4810](https://github.com/nick4810) - `FloatingVideo`, `SeriesModal`, `VODModal`, `SystemEvents`, `M3URefreshNotification`, and `NotificationCenter` significantly reduced in size by separating business logic into dedicated utility modules under `utils/components/` (`FloatingVideoUtils.js`, `SeriesModalUtils.js`, `VODModalUtils.js`, `NotificationCenterUtils.js`). - `FloatingVideo` resize handle elements extracted into a standalone `ResizeHandles` sub-component. diff --git a/frontend/src/pages/Channels.jsx b/frontend/src/pages/Channels.jsx index ca8438bb..7b746b45 100644 --- a/frontend/src/pages/Channels.jsx +++ b/frontend/src/pages/Channels.jsx @@ -22,7 +22,7 @@ const PageContent = () => { const [allotmentSizes, setAllotmentSizes] = useLocalStorage( 'channels-splitter-sizes', - [50, 50] + [60, 40] ); // Only load logos when BOTH tables are ready