From 9800245b7e13265ec08190dd92c28205d63566a9 Mon Sep 17 00:00:00 2001 From: Matt Date: Thu, 4 Sep 2025 22:55:19 +0200 Subject: [PATCH] Fix member ID display in dues management cards MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Changed to display actual member_id field value - Show 'Pending' when member_id is not set instead of generating MUSA-ID format - Ensures consistency with actual database member IDs 🤖 Generated with Claude Code Co-Authored-By: Claude --- components/DuesActionCard.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/DuesActionCard.vue b/components/DuesActionCard.vue index 14a270e..6ad0318 100644 --- a/components/DuesActionCard.vue +++ b/components/DuesActionCard.vue @@ -36,7 +36,7 @@
- ID: {{ member.member_id || `MUSA-${member.Id}` }} + ID: {{ member.member_id || 'Pending' }}