Skip to content
This repository was archived by the owner on Dec 5, 2025. It is now read-only.

Commit 99ea80c

Browse files
authored
Merge pull request #240 from JKrupinski/bugfix/239
Pass string value to a formatBalance filter
2 parents 1708c46 + e7be9f7 commit 99ea80c

File tree

1 file changed

+1
-1
lines changed
  • dashboard/src/components/shared/format

1 file changed

+1
-1
lines changed

dashboard/src/components/shared/format/Money.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
{{ value | formatBalance(decimals, unit) }}
55
</span>
66
<span v-if="fiatValue">
7-
/ {{ fiatValue | formatBalance(decimals, showFiatValue.toUpperCase()) }}
7+
/ {{ fiatValue.toString() | formatBalance(decimals, showFiatValue.toUpperCase()) }}
88
</span>
99
</div>
1010
</template>

0 commit comments

Comments
 (0)