diff --git a/components/EOISection.vue b/components/EOISection.vue index 48969ef..30afa53 100644 --- a/components/EOISection.vue +++ b/components/EOISection.vue @@ -1,100 +1,106 @@ @@ -174,4 +180,15 @@ const formatDate = (dateString: string) => { minute: '2-digit' }); }; + +const getStatusColor = (status: string) => { + switch (status) { + case 'Waiting for Signatures': + return 'warning'; + case 'Signed': + return 'success'; + default: + return 'grey'; + } +};