mirror of
https://github.com/portainer/portainer.git
synced 2025-07-25 16:29:44 +02:00
9 lines
232 B
TypeScript
9 lines
232 B
TypeScript
|
import { isoDate } from '@/portainer/filters/filters';
|
||
|
|
||
|
import { columnHelper } from './helper';
|
||
|
|
||
|
export const updated = columnHelper.accessor('Updated', {
|
||
|
header: 'Last Update',
|
||
|
cell: ({ getValue }) => isoDate(getValue()),
|
||
|
});
|