1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-25 16:29:44 +02:00
portainer/app/docker/components/datatables/images-datatable/imagesDatatable.js
Chaim Lev-Ari 75f40fe485
refactor(portainer): remove offline mode [EE-4348] (#7761)
Co-authored-by: deviantony <anthony.lapenna@portainer.io>
2022-11-21 09:50:47 +02:00

18 lines
445 B
JavaScript

angular.module('portainer.docker').component('imagesDatatable', {
templateUrl: './imagesDatatable.html',
controller: 'ImagesDatatableController',
bindings: {
titleText: '@',
titleIcon: '@',
dataset: '<',
tableKey: '@',
orderBy: '@',
reverseOrder: '<',
showHostColumn: '<',
removeAction: '<',
downloadAction: '<',
forceRemoveAction: '<',
exportInProgress: '<',
refreshCallback: '<',
},
});