mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Add date filter to activity table
This commit is contained in:
parent
aaa116d218
commit
07bb315bb3
5 changed files with 105 additions and 48 deletions
|
@ -101,7 +101,8 @@ const Activity = () => {
|
|||
accessorFn: row => parseISO8601Date(row.Date),
|
||||
header: globalize.translate('LabelTime'),
|
||||
size: 160,
|
||||
Cell: ({ cell }) => toLocaleString(cell.getValue<Date>())
|
||||
Cell: ({ cell }) => toLocaleString(cell.getValue<Date>()),
|
||||
filterVariant: 'datetime-range'
|
||||
},
|
||||
{
|
||||
accessorKey: 'Severity',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue