My Angular project renders dynamic content that includes the following HTML structure:
<div class="complted" *ngFor="let step of letStep1to7; let i = index; let first = first">
<table>
<td class="steps" [ngClass]="{ last: last }">
<img class="completeimg" src={{step.img}} alt="">
<p class="card-text1"> Step {{i+1}}: Completed</p>
<p class="card-text1">{{step.ReturnDisplayC}}</p>
<p class="card-text1"><b>Date:</b> {{step.ReturnStatus}}</p>
<p class="card-text">{{step.ReturnStatus}}</p>
</td>
</table>
</div>
I am looking to remove the arrow before the image in this dynamic data.
How can I achieve removing the arrow image for the next line of data as shown in the images below?