From 82c9681dfa70404e91666ed318f0f5cafbc9de91 Mon Sep 17 00:00:00 2001 From: ajdj100 Date: Mon, 15 Dec 2025 12:23:29 -0500 Subject: [PATCH] Removed approve/deny buttons from the app list --- ui/src/pages/ManageApplications.vue | 24 ++---------------------- 1 file changed, 2 insertions(+), 22 deletions(-) diff --git a/ui/src/pages/ManageApplications.vue b/ui/src/pages/ManageApplications.vue index bc5a347..d54b48a 100644 --- a/ui/src/pages/ManageApplications.vue +++ b/ui/src/pages/ManageApplications.vue @@ -52,16 +52,6 @@ function formatExact(iso) { return isNaN(d) ? '' : exactFmt.format(d) } -async function handleApprove(id) { - await approveApplication(id); - appList.value = await getAllApplications(); -} - -async function handleDeny(id) { - await denyApplication(id); - appList.value = await getAllApplications(); -} - const router = useRouter(); function openApplication(id) { router.push(`/administration/applications/${id}`) @@ -102,7 +92,7 @@ onMounted(async () => { User - Date Submitted + Date Submitted Status @@ -117,20 +107,10 @@ onMounted(async () => { - + {{ formatAgo(app.submitted_at) }} - - - - -