Fixes high amount of groups

This commit is contained in:
GabrielInTheWorld 2021-11-19 10:42:44 +01:00
parent 4efc591d21
commit 19ea4a312e
1 changed files with 2 additions and 2 deletions

View File

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