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