mirror of
https://github.com/portainer/portainer.git
synced 2025-07-21 22:39:41 +02:00
17 lines
394 B
JavaScript
17 lines
394 B
JavaScript
|
import EdgeJobFormController from './edgeJobFormController';
|
||
|
|
||
|
angular.module('portainer.edge').component('edgeJobForm', {
|
||
|
templateUrl: './edgeJobForm.html',
|
||
|
controller: EdgeJobFormController,
|
||
|
bindings: {
|
||
|
model: '=',
|
||
|
groups: '<',
|
||
|
tags: '<',
|
||
|
addLabelAction: '<',
|
||
|
removeLabelAction: '<',
|
||
|
formAction: '<',
|
||
|
formActionLabel: '@',
|
||
|
actionInProgress: '<',
|
||
|
},
|
||
|
});
|