mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 13:29:41 +02:00
* feat(k8s/application): expose placement conditions * feat(k8s/applications): minor UI update * feat(k8s/application): update message for admin and non admin users * feat(kubernetes/applications): minor UI update Co-authored-by: Anthony Lapenna <lapenna.anthony@gmail.com>
15 lines
405 B
JavaScript
15 lines
405 B
JavaScript
angular.module('portainer.kubernetes').component('kubernetesApplicationPlacementsDatatable', {
|
|
templateUrl: './template.html',
|
|
controller: 'KubernetesApplicationPlacementsDatatableController',
|
|
bindings: {
|
|
titleText: '@',
|
|
titleIcon: '@',
|
|
dataset: '<',
|
|
tableKey: '@',
|
|
orderBy: '@',
|
|
reverseOrder: '<',
|
|
refreshCallback: '<',
|
|
loading: '<',
|
|
removeAction: '<',
|
|
},
|
|
});
|