This commit is contained in:
2024-02-16 17:27:20 +01:00
parent d551657d99
commit 7951052ce3

View File

@@ -97,7 +97,7 @@ const tproducts = computed(() => {
prod.calcPrice =
Math.round(prod.calcPrice * currencyCoef.value * 100) / 100;
prod.rate = currencyHash.value[prod.currency];
if (prod.tag.length > 1) prod.tag = prod.tag.replace(/_/g, " ");
if (prod.tag != null && prod.tag.length > 1) prod.tag = prod.tag.replace(/_/g, " ");
return prod;
});
});