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/containers.ts

20 lines
640 B

import angular from 'angular';
import { withCurrentUser } from '@/react-tools/withCurrentUser';
import { withUIRouter } from '@/react-tools/withUIRouter';
import { r2a } from '@/react-tools/react2angular';
import { ContainerNetworksDatatable } from '@/react/docker/containers/ItemView/ContainerNetworksDatatable';
const ngModule = angular
.module('portainer.docker.react.components.containers', [])
.component(
'dockerContainerNetworksDatatable',
r2a(withUIRouter(withCurrentUser(ContainerNetworksDatatable)), [
'container',
'dataset',
'nodeName',
])
);
export const containersModule = ngModule.name;