1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-25 16:29:44 +02:00
portainer/app/react/docker/services/ItemView/TasksDatatable/columns/updated.tsx

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
232 B
TypeScript
Raw Normal View History

import { isoDate } from '@/portainer/filters/filters';
import { columnHelper } from './helper';
export const updated = columnHelper.accessor('Updated', {
header: 'Last Update',
cell: ({ getValue }) => isoDate(getValue()),
});