From 5e5bcdfb4f01244dbae0dd70ae1b6e3ca7678da1 Mon Sep 17 00:00:00 2001 From: Matt Date: Fri, 5 Sep 2025 17:03:26 +0200 Subject: [PATCH] Update member list ID display and move Mark Paid button MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Changed ID display from "DB ID: pending" to "ID Pending" for cleaner UI - Moved Mark Paid button from Dues column to Actions column for better organization - Increased Actions column width to accommodate the Mark Paid button - Simplified the dues status display to just show the chip 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- pages/admin/members/index.vue | 28 +++++++++++++--------------- 1 file changed, 13 insertions(+), 15 deletions(-) diff --git a/pages/admin/members/index.vue b/pages/admin/members/index.vue index ed3d54c..be36413 100644 --- a/pages/admin/members/index.vue +++ b/pages/admin/members/index.vue @@ -177,7 +177,7 @@ />
{{ item.first_name }} {{ item.last_name }}
-
ID: {{ item.member_id || `Pending (DB ID: ${item.Id})` }}
+
{{ item.member_id ? `ID: ${item.member_id}` : 'ID Pending' }}
@@ -200,14 +200,17 @@ + + - -