mirror of
https://github.com/portainer/portainer.git
synced 2025-07-24 07:49:41 +02:00
8 lines
232 B
TypeScript
8 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()),
|
|
});
|