2023-05-02 06:42:16 +00:00
|
|
|
import { Job } from '@/react/nomad/types';
|
|
|
|
|
|
|
|
import { buildExpandColumn } from '@@/datatables/expand-column';
|
|
|
|
|
2022-11-13 10:29:25 +00:00
|
|
|
import { name } from './name';
|
|
|
|
import { status } from './status';
|
|
|
|
import { created } from './created';
|
|
|
|
import { actions } from './actions';
|
|
|
|
import { namespace } from './namespace';
|
|
|
|
|
2023-05-02 06:42:16 +00:00
|
|
|
const expand = buildExpandColumn<Job>();
|
|
|
|
|
|
|
|
export const columns = [expand, name, status, namespace, actions, created];
|