Commit 4d6a8f7a authored by RenanMontenegro3's avatar RenanMontenegro3

feat: alteração no campo status em aceites

parent ee14e409
......@@ -7,10 +7,11 @@
<div class="main-body">
<button mat-raised-button color="primary" style="background-color: #43a047; color: #fff; margin: 12px 0;" (click)="saveDataInCSV('aceites')">
<mat-icon>download</mat-icon>
Exportar Excel
</button>
<button mat-raised-button color="primary" style="background-color: #43a047; color: #fff; margin: 12px 0;"
(click)="saveDataInCSV('aceites')">
<mat-icon>download</mat-icon>
Exportar Excel
</button>
<div class="table-container" style="overflow-x: auto">
<table mat-table [dataSource]="dataSource" matSort>
<!-- ID Column -->
......@@ -50,7 +51,7 @@
<ng-container matColumnDef="status">
<th mat-header-cell *matHeaderCellDef>Status</th>
<td mat-cell *matCellDef="let row">
{{ row.status == "Y" ? "Verificado" : "Não verificado" }}
{{ (row.status === "Y" || row.status === "NE" || row.status === "YR") ? "Verificado" : "Não verificado" }}
</td>
</ng-container>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment