Skip to content

Commit

Permalink
fix: styling search result
Browse files Browse the repository at this point in the history
  • Loading branch information
HenryT-CG committed Oct 11, 2024
1 parent 40f6db7 commit 96cc30b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@

<ng-template pTemplate="body" let-row="rowIndex" let-rowData let-columns="columns">
<tr [pSelectableRow]="announcements">
<td class="px-0 text-center white-space-nowrap">
<td class="px-2 text-center white-space-nowrap">
<ng-container *ocxIfNotPermission="'ANNOUNCEMENT#EDIT'">
<button
pbutton
Expand Down Expand Up @@ -132,7 +132,7 @@
</button>
</td>
<td *ngFor="let col of columns" [class]="col.css">
<ng-container *ngIf="col.limit"> {{ limitText(rowData[col.field], 25) }} </ng-container>
<ng-container *ngIf="col.limit"> {{ limitText(rowData[col.field], 50) }} </ng-container>
<ng-container *ngIf="col.isDate"> {{ rowData[col.field] | date: dateFormat }} </ng-container>
<ng-container *ngIf="col.isDropdown">
{{ 'ENUMS.ANNOUNCEMENT_' + col.header + '.' + rowData[col.field] | translate }}
Expand Down

0 comments on commit 96cc30b

Please sign in to comment.