mirror of
https://github.com/owncast/owncast.git
synced 2024-11-21 12:18:02 +03:00
Fix mistyped filter value in the admin's log table (#3952)
This commit is contained in:
parent
e59285d998
commit
dd5a14cd1a
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ export const LogTable: FC<LogTableProps> = ({ logs, initialPageSize }) => {
|
|||
},
|
||||
{
|
||||
text: 'Error',
|
||||
value: 'Error',
|
||||
value: 'error',
|
||||
},
|
||||
],
|
||||
onFilter: (level, row) => row.level.indexOf(level) === 0,
|
||||
|
|
Loading…
Reference in a new issue