mirror of
https://github.com/portainer/portainer.git
synced 2025-07-26 00:39:41 +02:00
14 lines
391 B
JavaScript
14 lines
391 B
JavaScript
|
angular.module('portainer.docker').component('scheduleTasksDatatable', {
|
||
|
templateUrl: 'app/portainer/components/datatables/schedule-tasks-datatable/scheduleTasksDatatable.html',
|
||
|
controller: 'GenericDatatableController',
|
||
|
bindings: {
|
||
|
titleText: '@',
|
||
|
titleIcon: '@',
|
||
|
dataset: '<',
|
||
|
tableKey: '@',
|
||
|
orderBy: '@',
|
||
|
reverseOrder: '<',
|
||
|
goToContainerLogs: '<'
|
||
|
}
|
||
|
});
|