We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ba5b27 commit b2b3d4eCopy full SHA for b2b3d4e
components/widgets/TransactionsWidget.vue
@@ -2,6 +2,9 @@
2
/** Vendor */
3
import { DateTime } from "luxon"
4
5
+/** Services */
6
+import { comma } from "@/services/utils"
7
+
8
/** API */
9
import { fetchHistogram } from "@/services/api/histogram"
10
@@ -42,7 +45,7 @@ const getSectorName = (idx) => {
42
45
<Flex align="center" gap="6">
43
46
<Icon name="tx" size="16" color="primary" />
44
47
<Flex gap="4" align="end">
- <Text size="16" weight="600" color="primary">{{ txCounter }}</Text>
48
+ <Text size="16" weight="600" color="primary">{{ comma(txCounter) }}</Text>
49
<Text size="12" weight="700" color="tertiary">TXs</Text>
50
</Flex>
51
0 commit comments