From ede7b2212d24aa7df490540af63b884efc31be02 Mon Sep 17 00:00:00 2001 From: Moriz Wahl Date: Tue, 16 May 2023 02:15:33 +0200 Subject: [PATCH] feat(frontend): add community to send form --- .../GddSend/TransactionConfirmationSend.vue | 29 +++++++++++++------ .../components/GddSend/TransactionForm.vue | 10 +++++++ frontend/src/locales/de.json | 1 + frontend/src/locales/en.json | 1 + 4 files changed, 32 insertions(+), 9 deletions(-) diff --git a/frontend/src/components/GddSend/TransactionConfirmationSend.vue b/frontend/src/components/GddSend/TransactionConfirmationSend.vue index a9058558c..95a06ea3c 100644 --- a/frontend/src/components/GddSend/TransactionConfirmationSend.vue +++ b/frontend/src/components/GddSend/TransactionConfirmationSend.vue @@ -3,15 +3,23 @@
{{ $t('form.send_check') }}
- - -
{{ userName ? userName : identifier }}
-
{{ $t('form.memo') }}
-
{{ memo }}
-
- -
{{ $t('send_gdd') }}
-
{{ amount | GDD }}
+ + + {{ $t('form.recipientCommunity') }} + {{ communityName }} + + + {{ $t('form.recipient') }} + {{ userName ? userName : identifier }} + + + {{ $t('form.amount') }} + {{ amount | GDD }} + + + {{ $t('form.memo') }} + {{ memo }} +
@@ -58,6 +66,8 @@