From 6e94d5e2d556e35a3e5cc66de18688b0bef50f71 Mon Sep 17 00:00:00 2001 From: Jaroslav Drzik Date: Fri, 16 Feb 2024 17:16:56 +0100 Subject: [PATCH] Optimize results for mobile phone --- resources/js/Pages/IkeaRoot.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/js/Pages/IkeaRoot.vue b/resources/js/Pages/IkeaRoot.vue index 8514a7f..c120ca6 100644 --- a/resources/js/Pages/IkeaRoot.vue +++ b/resources/js/Pages/IkeaRoot.vue @@ -97,7 +97,7 @@ const tproducts = computed(() => { prod.calcPrice = Math.round(prod.calcPrice * currencyCoef.value * 100) / 100; prod.rate = currencyHash.value[prod.currency]; - + prod.tag = prod.tag.replace(/_/g, " "); return prod; }); });