From 49b3825af462af75144591ec199d5f88ce8d0bef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A2u=20Cao?= Date: Thu, 14 Mar 2024 17:48:23 +0100 Subject: [PATCH] Show confirmation block for confirmed reimbursements --- app/components/confirmed-in/template.hbs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app/components/confirmed-in/template.hbs b/app/components/confirmed-in/template.hbs index 44614dc..65ac4f0 100644 --- a/app/components/confirmed-in/template.hbs +++ b/app/components/confirmed-in/template.hbs @@ -1,3 +1,5 @@ -{{#unless this.isConfirmed}} +{{#if this.isConfirmed}} +Confirmed at block {{@confirmedAtBlock}} (~ {{this.confirmedInHumanTime}} ago) +{{else}} Confirming in {{this.confirmedInBlocks}} blocks (~ {{this.confirmedInHumanTime}}) -{{/unless}} +{{/if}}