Merge pull request #3462 from gradido/fix_missing_names

fix(admin): update field key according to changed graphlq request
This commit is contained in:
einhornimmond 2025-03-31 14:01:37 +02:00 committed by GitHub
commit f06855e305
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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: {