1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Update time format

This commit is contained in:
Bill Thornton 2025-01-31 12:22:55 -05:00
parent 6d1da8fcba
commit bd92527529

View file

@ -105,7 +105,7 @@ export const Component = () => {
accessorFn: row => row.DateLastActivity ? parseISO(row.DateLastActivity) : undefined,
header: globalize.translate('LastActive'),
size: 160,
Cell: ({ cell }) => format(cell.getValue<Date>(), 'Ppp', { locale: dateFnsLocale }),
Cell: ({ cell }) => format(cell.getValue<Date>(), 'Pp', { locale: dateFnsLocale }),
filterVariant: 'datetime-range',
enableEditing: false
},