mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 05:19:39 +02:00
16 lines
433 B
JavaScript
16 lines
433 B
JavaScript
|
angular.module('portainer.docker').component('macvlanNodesDatatable', {
|
||
|
templateUrl: 'app/docker/components/datatables/macvlan-nodes-datatable/macvlanNodesDatatable.html',
|
||
|
controller: 'GenericDatatableController',
|
||
|
bindings: {
|
||
|
titleText: '@',
|
||
|
titleIcon: '@',
|
||
|
dataset: '<',
|
||
|
tableKey: '@',
|
||
|
orderBy: '@',
|
||
|
reverseOrder: '<',
|
||
|
showIpAddressColumn: '<',
|
||
|
accessToNodeDetails: '<',
|
||
|
state: '='
|
||
|
}
|
||
|
});
|