You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
portainer/app/docker/react/components/swarm.ts

18 lines
497 B

import angular from 'angular';
import { r2a } from '@/react-tools/react2angular';
import { withUIRouter } from '@/react-tools/withUIRouter';
import { NodesDatatable } from '@/react/docker/swarm/SwarmView/NodesDatatable';
export const swarmModule = angular
.module('portainer.docker.react.components.swarm', [])
.component(
'nodesDatatable',
r2a(withUIRouter(NodesDatatable), [
'dataset',
'isIpColumnVisible',
'haveAccessToNode',
'onRefresh',
])
).name;