Skip to content
This repository was archived by the owner on May 14, 2025. It is now read-only.

Commit 4ee22f7

Browse files
committed
Audit Records: truncate data column
Resolves #903
1 parent 6941e27 commit 4ee22f7

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

ui/src/app/audit/audit-record/audit-record.component.html

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -64,29 +64,29 @@
6464
</thead>
6565
<tbody>
6666
<tr *ngFor="let item of auditRecords.items | paginate: auditRecords.getPaginationInstance(); index as i">
67-
<td>
67+
<td nowrap="">
6868
<a style="cursor: pointer" (click)="viewDetails(item)">{{ item.auditRecordId }}</a>
6969
</td>
70-
<td>
70+
<td nowrap="">
7171
{{ item.createdOn | dataflowDateTime }}
7272
</td>
73-
<td>
73+
<td nowrap="">
7474
<app-audit-record-operation [auditRecord]="item"></app-audit-record-operation>
7575
</td>
76-
<td>
76+
<td nowrap="">
7777
<app-audit-record-action [auditRecord]="item"></app-audit-record-action>
7878
</td>
79-
<td>
79+
<td nowrap="">
8080
<strong>{{ item.correlationId }}</strong>
8181
</td>
82-
<td>
82+
<td nowrap="">
8383
{{item.createdBy || 'N/A'}}
8484
</td>
85-
<td>
85+
<td nowrap="">
8686
{{ item.serverHost }}
8787
</td>
88-
<td>
89-
{{ item.auditData }}
88+
<td class="dataflow-truncator-width">
89+
<dataflow-truncator [input]="item.auditData" trailPosition="start" trail=""></dataflow-truncator>
9090
</td>
9191
<td class="table-actions" width="10px" nowrap="">
9292
<app-list-row-actions [item]="item" (action)="applyAction($event.action, $event.args)"

0 commit comments

Comments
 (0)