Skip to content

Commit 9f80dc9

Browse files
committed
fixed #469
1 parent b2fa10a commit 9f80dc9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

quick-start/src/main/ui/app/traces/traces.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ <h1>Traces</h1>
3636
<tr *ngFor="let trace of traces" (click)="showTrace(trace.traceId)" [ngClass]="{'error' : trace.hasError }">
3737
<td colspan="4" *ngIf="!trace.identifier && !trace.collectorPlugin" style="text-align: center">This trace has an invalid format</td>
3838
<td *ngIf="trace.identifier"><i class="mdi" [ngClass]="getIconClass(trace)"></i> {{trace.flowType}}</td>
39-
<td *ngIf="trace.identifier" class="mdl-data-table__cell--non-numeric">{{trace.identifier | truncate:25}}</td>
39+
<td *ngIf="trace.identifier" class="mdl-data-table__cell--non-numeric">{{trace.identifier}}</td>
4040
<td *ngIf="trace.identifier" class="mdl-data-table__cell--non-numeric">{{trace.jobId}}</td>
4141
<td *ngIf="trace.identifier">{{trace.created | amTimeAgo}}</td>
4242
</tr>

0 commit comments

Comments
 (0)