fix colspan for user view of reports
This commit is contained in:
parent
c756bae079
commit
fd1b2d6953
1 changed files with 5 additions and 2 deletions
|
@ -150,8 +150,11 @@
|
||||||
|
|
||||||
<ng-template pTemplate="rowexpansion" let-abuse>
|
<ng-template pTemplate="rowexpansion" let-abuse>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="expand-cell" colspan="8">
|
<td *ngIf="isAdminView()" class="expand-cell" colspan="8">
|
||||||
<my-abuse-details [abuse]="abuse" [isAdminView]="isAdminView()"></my-abuse-details>
|
<my-abuse-details [abuse]="abuse" [isAdminView]="true"></my-abuse-details>
|
||||||
|
</td>
|
||||||
|
<td *ngIf="!isAdminView()" class="expand-cell" colspan="6">
|
||||||
|
<my-abuse-details [abuse]="abuse" [isAdminView]="false"></my-abuse-details>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</ng-template>
|
</ng-template>
|
||||||
|
|
Loading…
Reference in a new issue