mirror of
https://github.com/portainer/portainer.git
synced 2025-07-23 15:29:42 +02:00
* feat(k8s/applications): storages rollup panel * feat(k8s/volumes): move storages table to volumes view * feat(k8s/volumes): minor UI update * feat(k8s/volumes): remember the selected tab * feat(api/k8s): update user default policies * feat(k8s/ui): minor UI update Co-authored-by: Anthony Lapenna <lapenna.anthony@gmail.com>
13 lines
352 B
JavaScript
13 lines
352 B
JavaScript
angular.module('portainer.kubernetes').component('kubernetesVolumesStoragesDatatable', {
|
|
templateUrl: './template.html',
|
|
controller: 'KubernetesVolumesStoragesDatatableController',
|
|
bindings: {
|
|
titleText: '@',
|
|
titleIcon: '@',
|
|
dataset: '<',
|
|
tableKey: '@',
|
|
orderBy: '@',
|
|
reverseOrder: '<',
|
|
refreshCallback: '<',
|
|
},
|
|
});
|