portainer/app/react/kubernetes/applications/DetailsView/ApplicationContainersDatatable/columns/pod.tsx

11 lines
239 B
TypeScript

import { columnHelper } from './helper';
export const pod = columnHelper.accessor('podName', {
header: 'Pod',
cell: ({ getValue }) => (
<div className="max-w-xs truncate" title={getValue()}>
{getValue()}
</div>
),
});