Display completed status on historical page

This commit is contained in:
2024-04-05 09:11:25 -04:00
parent 9df46268e0
commit cd35c04730

View File

@ -133,7 +133,9 @@ export default function () {
{event.pending
? "Not completed"
: event.approved
? "Approved"
? event.performed_at
? "Completed"
: "Approved"
: "Denied"}
</Text>
</CardFooter>