mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 05:19:39 +02:00
16 lines
398 B
JavaScript
16 lines
398 B
JavaScript
|
angular.module('ui').component('nodesDatatable', {
|
||
|
templateUrl: 'app/directives/ui/datatables/nodes-datatable/nodesDatatable.html',
|
||
|
controller: 'GenericDatatableController',
|
||
|
bindings: {
|
||
|
title: '@',
|
||
|
titleIcon: '@',
|
||
|
dataset: '<',
|
||
|
tableKey: '@',
|
||
|
orderBy: '@',
|
||
|
reverseOrder: '<',
|
||
|
showTextFilter: '<',
|
||
|
showIpAddressColumn: '<',
|
||
|
accessToNodeDetails: '<'
|
||
|
}
|
||
|
});
|