Sorry I am new to angular and trying to learning some basics while making some app myself.
I have the following that that outputs an array in the table cell TEST1,TEST2,TEST3
My goal is to make it to display as
TEST1
TEST2
TEST3
getStatus(element.message) returns an array that is constructed by
array.push(match[0]) in a for loop
<ng-container matColumnDef="ticketStatus">
<th mat-header-cell *matHeaderCellDef class="text-center w-6">
Status
</th>
<td mat-cell *matCellDef="let element">{{ getStatus(element.message) }}</td>
</ng-container>