1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-19 13:29:41 +02:00
portainer/app/react/kubernetes/cluster/HomeView/NodesDatatable/columns/ip.tsx
2023-10-16 21:19:08 +01:00

11 lines
293 B
TypeScript

import { getInternalNodeIpAddress } from '../utils';
import { columnHelper } from './helper';
export const ip = columnHelper.accessor(
(row) => getInternalNodeIpAddress(row) ?? '-',
{
header: 'IP Address',
cell: ({ row }) => getInternalNodeIpAddress(row.original) ?? '-',
}
);