portainer/app/react/nomad/jobs/JobsView/JobsDatatable/columns/name.tsx

25 lines
523 B
TypeScript
Raw Normal View History

import { CellProps, Column } from 'react-table';
import { Job } from '@/react/nomad/types';
import { ExpandingCell } from '@@/datatables/ExpandingCell';
export const name: Column<Job> = {
Header: 'Name',
accessor: (row) => row.ID,
id: 'name',
Cell: NameCell,
disableFilters: true,
Filter: () => null,
canHide: false,
sortType: 'string',
};
export function NameCell({ value: name, row }: CellProps<Job>) {
return (
<ExpandingCell row={row} showExpandArrow>
{name}
</ExpandingCell>
);
}