Merge pull request #6287 from GabrielInTheWorld/of-groups-view

Fixes high amount of groups
This commit is contained in:
Sean 2021-11-23 11:54:58 +01:00 committed by GitHub
commit dc555a4116
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@
</mat-expansion-panel-header>
<div class="scrollable-perm-matrix">
<mat-table [dataSource]="getTableDataSource(app.permissions)">
<table mat-table [dataSource]="getTableDataSource(app.permissions)">
<ng-container matColumnDef="perm" sticky>
<mat-header-cell *matHeaderCellDef>{{ 'Permissions' | translate }}</mat-header-cell>
<mat-cell *matCellDef="let perm">
@ -48,7 +48,7 @@
<mat-header-row *matHeaderRowDef="headerRowDef"></mat-header-row>
<mat-row *matRowDef="let row; columns: headerRowDef"></mat-row>
</mat-table>
</table>
</div>
</mat-expansion-panel>
</mat-accordion>