mirror of https://github.com/portainer/portainer
14 lines
410 B
TypeScript
14 lines
410 B
TypeScript
import { Job } from '@/react/nomad/types';
|
|
|
|
import { buildExpandColumn } from '@@/datatables/expand-column';
|
|
|
|
import { name } from './name';
|
|
import { status } from './status';
|
|
import { created } from './created';
|
|
import { actions } from './actions';
|
|
import { namespace } from './namespace';
|
|
|
|
const expand = buildExpandColumn<Job>();
|
|
|
|
export const columns = [expand, name, status, namespace, actions, created];
|