diff --git a/frontend/src/components/tables/EPGsTable.jsx b/frontend/src/components/tables/EPGsTable.jsx index 3a80880e..73c9f50c 100644 --- a/frontend/src/components/tables/EPGsTable.jsx +++ b/frontend/src/components/tables/EPGsTable.jsx @@ -104,13 +104,13 @@ const EPGsTable = () => { minSize: 100, }, { - header: 'URL / API Key', + header: 'URL / API Key / File Path', accessorKey: 'url', size: 200, minSize: 120, enableSorting: false, Cell: ({ cell, row }) => { - const value = cell.getValue() || row.original.api_key || ''; + const value = cell.getValue() || row.original.api_key || row.original.file_path || ''; return (
{ accessorKey: 'server_url', size: 200, minSize: 120, - Cell: ({ cell }) => ( -
- {cell.getValue()} -
- ), + Cell: ({ cell, row }) => { + const value = cell.getValue() || row.original.file_path || ''; + return ( + +
+ {value} +
+
+ ); + }, }, { header: 'Max Streams',