fix management table
This commit is contained in:
Generated
+2
-2
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "buntspecht-web",
|
"name": "buntspecht-web",
|
||||||
"version": "0.3.0",
|
"version": "0.3.1",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "buntspecht-web",
|
"name": "buntspecht-web",
|
||||||
"version": "0.3.0",
|
"version": "0.3.1",
|
||||||
"license": "AGPL3",
|
"license": "AGPL3",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@angular/animations": "^18.2.7",
|
"@angular/animations": "^18.2.7",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "buntspecht-web",
|
"name": "buntspecht-web",
|
||||||
"version": "0.3.0",
|
"version": "0.3.1",
|
||||||
"license": "AGPL3",
|
"license": "AGPL3",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"ng": "ng",
|
"ng": "ng",
|
||||||
|
|||||||
@@ -61,8 +61,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
@if (entries && entries.total) {
|
@if (entries && entries.total) {
|
||||||
<div class="flex scroll-container grow">
|
<div class="scroll-container">
|
||||||
<table class="default-table grow" mat-table [dataSource]="entries.results || []" multiTemplateDataRows matSort
|
<table class="default-table" mat-table [dataSource]="entries.results || []" multiTemplateDataRows matSort
|
||||||
(matSortChange)="applySort($event)" [matSortDisableClear]="true">
|
(matSortChange)="applySort($event)" [matSortDisableClear]="true">
|
||||||
<ng-container matColumnDef="username">
|
<ng-container matColumnDef="username">
|
||||||
<th mat-header-cell *matHeaderCellDef mat-sort-header [disableClear]="false">
|
<th mat-header-cell *matHeaderCellDef mat-sort-header [disableClear]="false">
|
||||||
@@ -133,7 +133,7 @@
|
|||||||
<tr class="entry" mat-row *matRowDef="let row; columns: columns;"></tr>
|
<tr class="entry" mat-row *matRowDef="let row; columns: columns;"></tr>
|
||||||
|
|
||||||
<tr class="expanded-row" [ngClass]="{'visible' : expanded}" mat-row
|
<tr class="expanded-row" [ngClass]="{'visible' : expanded}" mat-row
|
||||||
*matRowDef="let row; columns: ['expanded']"></tr>
|
*matRowDef="let row; columns: expanded ? ['expanded'] : []"></tr>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user