1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-19 13:29:41 +02:00
portainer/app/kubernetes/components/datatables/applications-stacks-datatable/applicationsStacksDatatable.js
Prabhat Khera fc1aec3bb8
fix(ui): namespace caching issue EE-5273 (#8709)
* fix namespace caching issue

* fix(apps): add loading state [EE-5273]

* rm endpoint provider

* fix(namespace): remove caching [EE-5273]

* variable typo

---------

Co-authored-by: testa113 <testa113>
2023-03-31 13:24:57 +13:00

20 lines
558 B
JavaScript

angular.module('portainer.kubernetes').component('kubernetesApplicationsStacksDatatable', {
templateUrl: './applicationsStacksDatatable.html',
controller: 'KubernetesApplicationsStacksDatatableController',
bindings: {
titleText: '@',
titleIcon: '@',
dataset: '<',
tableKey: '@',
orderBy: '@',
reverseOrder: '<',
refreshCallback: '<',
removeAction: '<',
namespaces: '<',
namespace: '<',
onChangeNamespaceDropdown: '<',
isAppsLoading: '<',
isSystemResources: '<',
setSystemResources: '<',
},
});