From 5b6f6d707186e2f86c34c056eb0ea74f5ec33b26 Mon Sep 17 00:00:00 2001 From: Matt Date: Tue, 10 Jun 2025 00:42:14 +0200 Subject: [PATCH] updates --- components/EOISection.vue | 197 +++++++++++++++++++++----------------- 1 file changed, 107 insertions(+), 90 deletions(-) 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'; + } +};