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