mirror of https://github.com/portainer/portainer
23 lines
538 B
JavaScript
23 lines
538 B
JavaScript
angular.module('portainer.docker').component('servicesDatatable', {
|
|
templateUrl: './servicesDatatable.html',
|
|
controller: 'ServicesDatatableController',
|
|
bindings: {
|
|
titleText: '@',
|
|
titleIcon: '@',
|
|
dataset: '<',
|
|
tableKey: '@',
|
|
orderBy: '@',
|
|
reverseOrder: '<',
|
|
nodes: '<',
|
|
agentProxy: '<',
|
|
showUpdateAction: '<',
|
|
showAddAction: '<',
|
|
showStackColumn: '<',
|
|
showTaskLogsButton: '<',
|
|
refreshCallback: '<',
|
|
notAutoFocus: '<',
|
|
endpointPublicUrl: '<',
|
|
endpointId: '<',
|
|
},
|
|
});
|