diff --git a/app/components/account-card/template.hbs b/app/components/account-card/template.hbs index d96dedb6..b3318f22 100644 --- a/app/components/account-card/template.hbs +++ b/app/components/account-card/template.hbs @@ -3,7 +3,7 @@ {{#liquid-if hideHistory class="hide-qr"}} {{qr-code content=model.id}} {{/liquid-if}} -

+

{{format-amount model.balance}} diff --git a/app/components/account-history-entry/template.hbs b/app/components/account-history-entry/template.hbs index 6d4d2863..46637994 100644 --- a/app/components/account-history-entry/template.hbs +++ b/app/components/account-history-entry/template.hbs @@ -1,5 +1,9 @@

- {{fa-icon "paper-plane" ariaHidden=true}} {{model.type}} + {{#if (eq model.type 'send')}} + {{fa-icon "paper-plane" ariaHidden=true}} + {{else}} + {{fa-icon "envelope-open" ariaHidden=true}} + {{/if}}

diff --git a/app/components/account-history/template.hbs b/app/components/account-history/template.hbs index 6533ff3d..c2a0ee2f 100644 --- a/app/components/account-history/template.hbs +++ b/app/components/account-history/template.hbs @@ -4,6 +4,6 @@ {{/each}} {{else}}

-

No History found

+

{{t 'wallets.accounts.history.none'}}

{{/if}} \ No newline at end of file diff --git a/app/components/ballance-overview/component.js b/app/components/balance-overview/component.js similarity index 100% rename from app/components/ballance-overview/component.js rename to app/components/balance-overview/component.js diff --git a/app/components/ballance-overview/template.hbs b/app/components/balance-overview/template.hbs similarity index 84% rename from app/components/ballance-overview/template.hbs rename to app/components/balance-overview/template.hbs index 5ba8316e..3969bda1 100644 --- a/app/components/ballance-overview/template.hbs +++ b/app/components/balance-overview/template.hbs @@ -18,12 +18,12 @@
-

{{t 'wallets.overview.balance' htmlSafe=true balance=(format-amount total)}}

+

{{t 'wallets.overview.balance' htmlSafe=true balance=(format-amount total)}}

- BALLANCE PENDING + BALANCE PENDING
- 100.00 + {{format-amount 100}}

diff --git a/app/components/navigation-bar/template.hbs b/app/components/navigation-bar/template.hbs index 32e225c4..28d8677f 100644 --- a/app/components/navigation-bar/template.hbs +++ b/app/components/navigation-bar/template.hbs @@ -1,9 +1,9 @@