From 8f45016532c2b0b0a8d873326ce28c5936d397a8 Mon Sep 17 00:00:00 2001 From: RcleydsonR Date: Fri, 24 Feb 2023 00:57:34 -0300 Subject: [PATCH] add text on listing component to show active lock amount --- src/assets/info.svg | 5 +++++ .../ListingComponent/ListingComponent.vue | 10 ++++++++-- .../__tests__/ListingComponent.spec.ts | 16 ++++++++++++++++ src/views/HomeView.vue | 5 +++++ src/views/ManageBidsView.vue | 5 +++++ 5 files changed, 39 insertions(+), 2 deletions(-) create mode 100644 src/assets/info.svg diff --git a/src/assets/info.svg b/src/assets/info.svg new file mode 100644 index 0000000..0f60765 --- /dev/null +++ b/src/assets/info.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/components/ListingComponent/ListingComponent.vue b/src/components/ListingComponent/ListingComponent.vue index e3433bf..2b8cc64 100644 --- a/src/components/ListingComponent/ListingComponent.vue +++ b/src/components/ListingComponent/ListingComponent.vue @@ -16,6 +16,7 @@ const etherStore = useEtherStore(); const props = defineProps<{ validDeposits: ValidDeposit[]; walletTransactions: WalletTransaction[]; + activeLockAmount: Number; }>(); const emit = defineEmits(["depositWithdrawn"]); @@ -139,7 +140,7 @@ showInitialItems();