1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-20 05:49:40 +02:00
portainer/app/react/kubernetes/applications/DetailsView/PlacementsDatatable/columns/index.tsx

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

16 lines
355 B
TypeScript
Raw Normal View History

import { buildExpandColumn } from '@@/datatables/expand-column';
import { NodePlacementRowData } from '../../types';
import { columnHelper } from './helper';
import { status } from './status';
export const columns = [
buildExpandColumn<NodePlacementRowData>(),
status,
columnHelper.accessor('name', {
header: 'Node',
id: 'node',
}),
];