Add missing CANCELLED status (#1248)

This commit is contained in:
ekzyis 2024-07-01 15:43:13 +02:00 committed by GitHub
parent fb52d5314d
commit 30e29f709d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 0 deletions

View File

@ -51,6 +51,10 @@ function Satus ({ status }) {
desc = 'expired'
color = 'muted'
break
case 'CANCELLED':
desc = 'cancelled'
color = 'muted'
break
case 'PENDING':
desc = 'pending'
color = 'muted'