From 30c345aa4f70b679e4b57d4399805b02022f9fad Mon Sep 17 00:00:00 2001 From: ogerly Date: Thu, 10 Mar 2022 13:37:02 +0100 Subject: [PATCH] add components DateRow, DecayRow --- .../TransactionRows/AmountAndName.vue | 2 +- .../TransactionRows/CollapseIcon.vue | 3 +- .../TransactionRows/{Date.vue => DateRow.vue} | 0 .../components/TransactionRows/DecayRow.vue | 30 +++++++++++++++++++ .../Transactions/TransactionCreation.vue | 25 ++++------------ .../Transactions/TransactionReceive.vue | 25 ++++------------ .../Transactions/TransactionSend.vue | 27 +++++------------ 7 files changed, 53 insertions(+), 59 deletions(-) rename frontend/src/components/TransactionRows/{Date.vue => DateRow.vue} (100%) create mode 100644 frontend/src/components/TransactionRows/DecayRow.vue diff --git a/frontend/src/components/TransactionRows/AmountAndName.vue b/frontend/src/components/TransactionRows/AmountAndName.vue index ed36ec301..24cbe8d1c 100644 --- a/frontend/src/components/TransactionRows/AmountAndName.vue +++ b/frontend/src/components/TransactionRows/AmountAndName.vue @@ -21,7 +21,7 @@ export default { name: 'AmountAndName', props: { amount: { - type: Number, + type: String, }, linkedUser: { type: Object, diff --git a/frontend/src/components/TransactionRows/CollapseIcon.vue b/frontend/src/components/TransactionRows/CollapseIcon.vue index 5e0f46474..a51efd640 100644 --- a/frontend/src/components/TransactionRows/CollapseIcon.vue +++ b/frontend/src/components/TransactionRows/CollapseIcon.vue @@ -1,5 +1,5 @@