Skip to content

Commit 20bb10e

Browse files
Fix #5533: add horizontal scroll to filtered collections report table
1 parent 825b39f commit 20bb10e

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/app/admin/admin-reports/filtered-collections/filtered-collections.component.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ <h1 id="header" class="border-bottom pb-2">{{ "admin.reports.collections.head" |
2929
{{ "admin.reports.collections.collections-report" | translate }}
3030
</ng-template>
3131
<ng-template ngbPanelContent>
32-
<table id="table" class="table table-striped">
32+
<div style="overflow-x: auto;">
33+
<table id="table" class="table table-striped">
3334
<thead>
3435
<tr class="header">
3536
<th rowspan="2">{{ "admin.reports.collections.community" | translate }}</th>
@@ -62,6 +63,7 @@ <h1 id="header" class="border-bottom pb-2">{{ "admin.reports.collections.head" |
6263
}
6364
</tbody>
6465
</table>
66+
</div>
6567
</ng-template>
6668
</ngb-panel>
6769
</ngb-accordion>

0 commit comments

Comments
 (0)