Skip to content

Commit

Permalink
Add id to status column in table for the e2e tests
Browse files Browse the repository at this point in the history
peremunoz committed Jun 13, 2024
1 parent efae151 commit 7667d07
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@
{{ certificate._links.shelterServed.href.split('/').slice(-2, -1)[0] }}
</td>
<td>{{ certificate.expirationDate | date }}</td>
<td>{{ certificate.validated ? 'Validated ✅' : 'Not validated ❌' }}</td>
<td id="status">{{ certificate.validated ? 'Validated ✅' : 'Not validated ❌' }}</td>
<button *ngIf="!certificate.validated" class="btn btn-primary" (click)="validateCertificate(certificate.uri)">Validate</button>
<button *ngIf="certificate.validated" class="btn btn-danger" (click)="invalidateCertificate(certificate.uri)">Invalidate</button>
</tr>

0 comments on commit 7667d07

Please sign in to comment.