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

19 lines
566 B

import angular from 'angular';
import { r2a } from '@/react-tools/react2angular';
import { MacvlanNodesSelector } from '@/react/docker/networks/CreateView/MacvlanNodesSelector/MacvlanNodesSelector';
import { withUIRouter } from '@/react-tools/withUIRouter';
export const networksModule = angular
.module('portainer.docker.react.components.networks', [])
.component(
'macvlanNodesSelector',
r2a(withUIRouter(MacvlanNodesSelector), [
'dataset',
'isIpColumnVisible',
'haveAccessToNode',
'value',
'onChange',
])
).name;