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/agent/components/node-selector/index.js

13 lines
298 B

import angular from 'angular';
import { NodeSelectorController } from './nodeSelectorController';
angular.module('portainer.agent').component('nodeSelector', {
templateUrl: './nodeSelector.html',
controller: NodeSelectorController,
bindings: {
model: '=',
endpointId: '<',
},
});