mirror of https://github.com/portainer/portainer
18 lines
483 B
JavaScript
18 lines
483 B
JavaScript
import angular from 'angular';
|
|||
|
|||
import { AssociatedEndpointsDatatableController } from './associatedEndpointsDatatableController';
|
|||
|
|||
angular.module('portainer.edge').component('associatedEndpointsDatatable', {
|
|||
templateUrl: './associatedEndpointsDatatable.html',
|
|||
controller: AssociatedEndpointsDatatableController,
|
|||
bindings: {
|
|||
titleText: '@',
|
|||
titleIcon: '@',
|
|||
tableKey: '@',
|
|||
orderBy: '@',
|
|||
reverseOrder: '<',
|
|||
retrievePage: '<',
|
|||
updateKey: '<',
|
|||
},
|
|||
});
|