green on EXECUTED

This commit is contained in:
ekzyis 2023-11-28 21:45:01 +01:00
parent 1944b04d07
commit 6869d6c821
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ const order = ref(props.order)
const statusClassName = computed(() => {
const status = order.value.Status
if (status === 'PAID') return 'success'
if (status === 'EXECUTED') return 'success'
if (status === 'PENDING') return 'info'
return 'error'
})