]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/pool/pool-list/pool-list.component.html
import 15.2.4
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / pool / pool-list / pool-list.component.html
index 124a670d2353cb0d899c11e754407c76fe26f592..8d6205817d81cf50b1e4bab81db7da9b89e95005 100644 (file)
@@ -1,23 +1,29 @@
 <tabset>
-  <tab i18n-heading heading="Pools List">
+  <tab i18n-heading
+       heading="Pools List">
     <cd-view-cache *ngFor="let viewCacheStatus of viewCacheStatusList"
                    [status]="viewCacheStatus.status"
                    [statusFor]="viewCacheStatus.statusFor"></cd-view-cache>
 
     <cd-table #table
+              id="pool-list"
               [data]="pools"
               [columns]="columns"
               selectionType="single"
+              [hasDetails]="true"
+              (setExpandedRow)="setExpandedRow($event)"
               (updateSelection)="updateSelection($event)">
-      <cd-table-actions class="table-actions"
+      <cd-table-actions id="pool-list-actions"
+                        class="table-actions"
                         [permission]="permissions.pool"
                         [selection]="selection"
                         [tableActions]="tableActions">
       </cd-table-actions>
       <cd-pool-details cdTableDetail
-                       [selection]="selection"
+                       id="pool-list-details"
+                       [selection]="expandedRow"
                        [permissions]="permissions"
-                       [cacheTiers]="selectionCacheTiers">
+                       [cacheTiers]="cacheTiers">
       </cd-pool-details>
     </cd-table>