mirror of https://github.com/portainer/portainer
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()),
|
||
|
});
|