From fc2cf1faedf3a5df8b59b552a2400465129be2d6 Mon Sep 17 00:00:00 2001 From: Yuut Date: Fri, 5 Apr 2024 21:34:24 -0500 Subject: [PATCH] Call formatNumberWithComma directly in inscription list, bypassing the stale data issue --- src/components/InscriptionList.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/InscriptionList.vue b/src/components/InscriptionList.vue index ef3bea1..8e8ff75 100644 --- a/src/components/InscriptionList.vue +++ b/src/components/InscriptionList.vue @@ -10,7 +10,7 @@
{{ inscription.seed.isDynamic ? 'Dynamic Fungi' : 'Stable Fungi' }} - {{ inscription.seed.seed }} + {{formatNumberWithComma(inscription.seed.seed)}}
import { useLayoutStore } from '@/stores' +import { formatNumberWithComma } from '@/utils/number' defineProps({ isLoading: {