Fixes: https://tracker.ceph.com/issues/61220
Signed-off-by: Pedro Gonzalez Gomez <pegonzal@redhat.com>
-<cd-table #table
- [data]="tableData"
- [columns]="columns"
- columnMode="flex"
- [toolHeader]="false"
- [autoReload]="autoReload"
- [customCss]="customCss"
- [autoSave]="false"
- [header]="false"
- [footer]="false"
- [limit]="0">
-</cd-table>
+<div class="table-scroller">
+ <cd-table #table
+ [data]="tableData"
+ [columns]="columns"
+ columnMode="flex"
+ [toolHeader]="false"
+ [autoReload]="autoReload"
+ [customCss]="customCss"
+ [autoSave]="false"
+ [header]="false"
+ [footer]="false"
+ [limit]="0">
+ </cd-table>
+</div>
+.table-scroller {
+ height: 100%;
+ max-height: 40vh;
+ overflow: auto;
+}