From d23379f4f2ffead498af1a5b8af538b75ea31913 Mon Sep 17 00:00:00 2001 From: einhornimmond Date: Sat, 29 Mar 2025 13:40:39 +0100 Subject: [PATCH] update field key according to changed graphlq request --- admin/src/pages/CreationConfirm.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/admin/src/pages/CreationConfirm.vue b/admin/src/pages/CreationConfirm.vue index 407258cec..006c463fb 100644 --- a/admin/src/pages/CreationConfirm.vue +++ b/admin/src/pages/CreationConfirm.vue @@ -136,8 +136,8 @@ const hideResubmissionModel = ref(true) const formatDateOrDash = (value) => (value ? new Date(value).toLocaleDateString() : '—') const baseFields = { - firstName: { key: 'firstName', label: t('firstname'), class: 'no-select' }, - lastName: { key: 'lastName', label: t('lastname'), class: 'no-select' }, + firstName: { key: 'user.firstName', label: t('firstname'), class: 'no-select' }, + lastName: { key: 'user.lastName', label: t('lastname'), class: 'no-select' }, amount: { key: 'amount', label: t('creation'), formatter: (value) => value + ' GDD' }, memo: { key: 'memo', label: t('text'), class: 'text-break' }, contributionDate: {