mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-08-02 23:02:37 +00:00
Sort by channel number by default.
This commit is contained in:
parent
3d8ced4296
commit
e4496f40ac
1 changed files with 3 additions and 3 deletions
|
|
@ -180,7 +180,7 @@ const m3uUrlBase = `${window.location.protocol}//${window.location.host}/output/
|
|||
const epgUrlBase = `${window.location.protocol}//${window.location.host}/output/epg`;
|
||||
const hdhrUrlBase = `${window.location.protocol}//${window.location.host}/hdhr`;
|
||||
|
||||
const CreateProfilePopover = ({}) => {
|
||||
const CreateProfilePopover = ({ }) => {
|
||||
const [opened, setOpened] = useState(false);
|
||||
const [name, setName] = useState('');
|
||||
const theme = useMantineTheme();
|
||||
|
|
@ -237,7 +237,7 @@ const CreateProfilePopover = ({}) => {
|
|||
);
|
||||
};
|
||||
|
||||
const ChannelsTable = ({}) => {
|
||||
const ChannelsTable = ({ }) => {
|
||||
const {
|
||||
channels,
|
||||
isLoading: channelsLoading,
|
||||
|
|
@ -520,7 +520,7 @@ const ChannelsTable = ({}) => {
|
|||
const rowVirtualizerInstanceRef = useRef(null);
|
||||
|
||||
const [isLoading, setIsLoading] = useState(true);
|
||||
const [sorting, setSorting] = useState([]);
|
||||
const [sorting, setSorting] = useState([{ id: 'channel_number', desc: false }]);
|
||||
|
||||
const editChannel = async (ch = null) => {
|
||||
setChannel(ch);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue