1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-02 20:35:25 +02:00

refactor(kube/namespaces): migrate item apps table to react [EE-4693] (#11012)

This commit is contained in:
Chaim Lev-Ari 2024-04-02 22:55:34 +03:00 committed by GitHub
parent d99486ee72
commit 9c68c6c9f3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 135 additions and 231 deletions

View file

@ -309,18 +309,8 @@
</div>
</div>
<div class="row" ng-if="ctrl.applications && ctrl.applications.length > 0">
<div class="col-sm-12">
<kubernetes-resource-pool-applications-datatable
dataset="ctrl.applications"
table-key="kubernetes.resourcepool.applications"
order-by="Name"
refresh-callback="ctrl.getApplications"
loading="ctrl.state.applicationsLoading"
title-text="Applications running in this namespace"
title-icon="code"
>
</kubernetes-resource-pool-applications-datatable>
</div>
<div ng-if="ctrl.applications && ctrl.applications.length > 0">
<kubernetes-namespace-applications-datatable dataset="ctrl.applications" on-refresh="(ctrl.getApplications)" is-loading="ctrl.state.applicationsLoading">
</kubernetes-namespace-applications-datatable>
</div>
</div>