mirror of https://github.com/portainer/portainer
15 lines
372 B
JavaScript
15 lines
372 B
JavaScript
import angular from 'angular';
|
|||
|
|||
import { EditEdgeStackFormController } from './editEdgeStackFormController';
|
|||
|
|||
angular.module('portainer.edge').component('editEdgeStackForm', {
|
|||
templateUrl: './editEdgeStackForm.html',
|
|||
controller: EditEdgeStackFormController,
|
|||
bindings: {
|
|||
model: '<',
|
|||
actionInProgress: '<',
|
|||
submitAction: '<',
|
|||
edgeGroups: '<',
|
|||
},
|
|||
});
|