diff --git a/frontend/src/components/Contributions/ContributionListItem.vue b/frontend/src/components/Contributions/ContributionListItem.vue
index fc4523718..76676c8c2 100644
--- a/frontend/src/components/Contributions/ContributionListItem.vue
+++ b/frontend/src/components/Contributions/ContributionListItem.vue
@@ -23,7 +23,7 @@
{{ $d(new Date(contributionDate), 'monthAndYear') }}
{{ $t('contributionText') }}
- {{ memo }}
+ {{ memo }}
{{ $t('contribution.alert.answerQuestion') }}
diff --git a/frontend/src/components/GddSend/TransactionForm.vue b/frontend/src/components/GddSend/TransactionForm.vue
index 2126dfa59..00102b77b 100644
--- a/frontend/src/components/GddSend/TransactionForm.vue
+++ b/frontend/src/components/GddSend/TransactionForm.vue
@@ -50,6 +50,7 @@
+ ::{{recipientEmail}}
-
+
{{ transaction.amount | GDD }}
@@ -48,5 +48,11 @@ export default {
transactionCount: { type: Number, default: 0 },
transactionLinkCount: { type: Number, default: 0 },
},
+ methods: {
+ setTunneledEmail(email) {
+ console.log('setTunneledEmail LastTransaction', email)
+ this.$emit('set-tunneled-email', email)
+ },
+ },
}
diff --git a/frontend/src/components/TransactionRows/Name.vue b/frontend/src/components/TransactionRows/Name.vue
index a10ed3bc8..4ff0a95b7 100644
--- a/frontend/src/components/TransactionRows/Name.vue
+++ b/frontend/src/components/TransactionRows/Name.vue
@@ -5,15 +5,6 @@
{{ itemText }}
-
{{ itemText }}
@@ -31,16 +22,17 @@ export default {
type: String,
required: false,
},
- // transactionLinkId: {
- // type: Number,
- // required: false,
- // default: null,
- // },
+ linkId: {
+ type: Number,
+ required: false,
+ default: null,
+ },
},
methods: {
tunnelEmail() {
+ console.log('tunnelEmail name', this.linkedUser.email)
this.$emit('set-tunneled-email', this.linkedUser.email)
- this.$router.push({ path: '/send' })
+ if (this.$router.history.current.fullPath !== '/send') this.$router.push({ path: '/send' })
},
},
computed: {
diff --git a/frontend/src/components/Transactions/TransactionReceive.vue b/frontend/src/components/Transactions/TransactionReceive.vue
index 9c4784e46..bb96649f9 100644
--- a/frontend/src/components/Transactions/TransactionReceive.vue
+++ b/frontend/src/components/Transactions/TransactionReceive.vue
@@ -11,15 +11,27 @@
v-on="$listeners"
:amount="amount"
:linkedUser="linkedUser"
- :transactionLinkId="transactionLinkId"
+ :linkId="linkId"
/>
{{ this.$d(new Date(balanceDate), 'short') }}
{{ this.$d(new Date(balanceDate), 'time') }}
- {{ $t('decay.types.receive') }}
+
+ {{ $t('decay.types.receive') }}
+
+
{{ amount | GDD }}
+
+ {{ $t('via_link') }}
+
+
@@ -76,7 +88,7 @@ export default {
type: String,
required: true,
},
- transactionLinkId: {
+ linkId: {
type: Number,
required: false,
default: null,
diff --git a/frontend/src/components/Transactions/TransactionSend.vue b/frontend/src/components/Transactions/TransactionSend.vue
index 3f1d2351b..801a569f1 100644
--- a/frontend/src/components/Transactions/TransactionSend.vue
+++ b/frontend/src/components/Transactions/TransactionSend.vue
@@ -11,15 +11,27 @@
v-on="$listeners"
:amount="amount"
:linkedUser="linkedUser"
- :transactionLinkId="transactionLinkId"
+ :linkId="linkId"
/>
{{ this.$d(new Date(balanceDate), 'short') }}
{{ this.$d(new Date(balanceDate), 'time') }}
- {{ $t('decay.types.send') }}
+
+ {{ $t('decay.types.send') }}
+
+
{{ amount | GDD }}
+
+ {{ $t('via_link') }}
+
+
@@ -77,7 +89,7 @@ export default {
type: String,
required: true,
},
- transactionLinkId: {
+ linkId: {
type: Number,
required: false,
default: null,
diff --git a/frontend/src/layouts/DashboardLayout.vue b/frontend/src/layouts/DashboardLayout.vue
index b2532483c..e7c0432fe 100755
--- a/frontend/src/layouts/DashboardLayout.vue
+++ b/frontend/src/layouts/DashboardLayout.vue
@@ -215,6 +215,7 @@ export default {
this.visible = bool
},
setTunneledEmail(email) {
+ console.log('setTunneledEmail dashboard', email)
this.tunneledEmail = email
},
// toogleMobilMenu() {
diff --git a/frontend/src/layouts/templates/RightSide.vue b/frontend/src/layouts/templates/RightSide.vue
index 8ee92b117..99cf3a3df 100644
--- a/frontend/src/layouts/templates/RightSide.vue
+++ b/frontend/src/layouts/templates/RightSide.vue
@@ -15,7 +15,7 @@
:transactions="transactions"
:transactionCount="transactionCount"
:transactionLinkCount="transactionLinkCount"
- v-on="$listeners"
+ @set-tunneled-email="setTunneledEmail"
/>
@@ -154,5 +154,11 @@ export default {
return this.$route.path
},
},
+ methods: {
+ setTunneledEmail(email) {
+ console.log('setTunneledEmail rightside', email)
+ this.$emit('set-tunneled-email', email)
+ },
+ },
}