From 1c58fbaea872f7d919ecf835101b580b71b69aa0 Mon Sep 17 00:00:00 2001
From: clauspeterhuebner
Date: Tue, 29 Apr 2025 21:58:15 +0200
Subject: [PATCH] next try
---
frontend/src/pages/TransactionLink.vue | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/frontend/src/pages/TransactionLink.vue b/frontend/src/pages/TransactionLink.vue
index 968faa13a..147dae43e 100644
--- a/frontend/src/pages/TransactionLink.vue
+++ b/frontend/src/pages/TransactionLink.vue
@@ -267,9 +267,12 @@ function setRedeemJwtLinkInformation() {
if (queryTransactionLink) {
// recipientUser is only set if the user is logged in
if (store.state.gradidoID !== null) {
- queryTransactionLink.recipientUser.gradidoID = store.state.gradidoID
- queryTransactionLink.recipientUser.firstName = store.state.firstName
- queryTransactionLink.recipientUser.alias = store.state.alias
+ queryTransactionLink.recipientUser = {
+ __typename: 'User',
+ gradidoID: store.state.gradidoID,
+ firstName: store.state.firstName,
+ alias: store.state.alias,
+ }
}
console.log(
'TransactionLink.setRedeemJwtLinkInformation... recipientUser=',