diff --git a/frontend/src/app/components/address/address.component.html b/frontend/src/app/components/address/address.component.html
index 0350a122a..e4b2530e3 100644
--- a/frontend/src/app/components/address/address.component.html
+++ b/frontend/src/app/components/address/address.component.html
@@ -42,7 +42,7 @@
-
{{ transactions?.length || '?' }} of {{ txCount }} transactions
+ {{ (transactions?.length | number) || '?' }} of {{ txCount | number }} transactions
diff --git a/frontend/src/app/components/block/block.component.html b/frontend/src/app/components/block/block.component.html
index ff43c10a2..4521c398c 100644
--- a/frontend/src/app/components/block/block.component.html
+++ b/frontend/src/app/components/block/block.component.html
@@ -22,7 +22,7 @@
Transactions |
- {{ block.tx_count }} |
+ {{ block.tx_count | number }} |
Size |
@@ -76,7 +76,7 @@
- {{ transactions?.length || '?' }} of {{ block.tx_count }} transactions
+ {{ (transactions?.length | number) || '?' }} of {{ block.tx_count | number }} transactions
diff --git a/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.html b/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.html
index 49dc0ab89..dcab7042b 100644
--- a/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.html
+++ b/frontend/src/app/components/blockchain-blocks/blockchain-blocks.component.html
@@ -10,7 +10,7 @@
~{{ block.medianFee | ceil }} sats/vB
{{ block.size | bytes: 2 }}
- {{ block.tx_count }} transactions
+ {{ block.tx_count | number }} transactions
diff --git a/frontend/src/app/components/latest-blocks/latest-blocks.component.html b/frontend/src/app/components/latest-blocks/latest-blocks.component.html
index ffdbb79ca..918e018eb 100644
--- a/frontend/src/app/components/latest-blocks/latest-blocks.component.html
+++ b/frontend/src/app/components/latest-blocks/latest-blocks.component.html
@@ -15,7 +15,7 @@
{{ block.height }} |
{{ block.timestamp * 1000 | date:'yyyy-MM-dd HH:mm' }} |
ago |
- {{ block.tx_count }} |
+ {{ block.tx_count | number }} |
diff --git a/frontend/src/app/components/transactions-list/transactions-list.component.html b/frontend/src/app/components/transactions-list/transactions-list.component.html
index 6fb27f39c..f45a88fc2 100644
--- a/frontend/src/app/components/transactions-list/transactions-list.component.html
+++ b/frontend/src/app/components/transactions-list/transactions-list.component.html
@@ -49,7 +49,7 @@
|
tx['@vinLength']">
-
+
|
@@ -84,7 +84,7 @@
tx['@voutLength']">
-
+
|