From edc4fedb43d55e871b3b5a156d388b2b564cc3eb Mon Sep 17 00:00:00 2001
From: clauspeterhuebner
Date: Fri, 25 Apr 2025 21:55:11 +0200
Subject: [PATCH] next try for VALID criteria
---
frontend/src/pages/TransactionLink.vue | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/frontend/src/pages/TransactionLink.vue b/frontend/src/pages/TransactionLink.vue
index 73f143c1e..4f3f8c263 100644
--- a/frontend/src/pages/TransactionLink.vue
+++ b/frontend/src/pages/TransactionLink.vue
@@ -140,9 +140,13 @@ const itemType = computed(() => {
console.log('TransactionLink.itemType... SELF_CREATOR')
return 'SELF_CREATOR'
}
- if (!linkData.value.redeemedAt && !linkData.value.deletedAt) {
+ if (
+ (!isRedeemJwtLink.value && !linkData.value.redeemedAt && !linkData.value.deletedAt) ||
+ isRedeemJwtLink.value
+ ) {
console.log('TransactionLink.itemType... VALID')
console.log('TransactionLink.itemType... validLink=', validLink.value)
+ console.log('TransactionLink.itemType... linkData=', linkData.value)
return 'VALID'
}
}