fix(G1-tail): NBSP перед ₽ через escape \u00A0 в DashboardPageHead (lint:vue green)

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
Дмитрий
2026-06-19 08:18:30 +03:00
parent 3440483bd7
commit aa381ec53f
@@ -47,7 +47,7 @@ const avgCostLabel = computed(() => {
const int = Math.round(v)
.toString()
.replace(/\B(?=(\d{3})+(?!\d))/g, ' ');
return `${int} `;
return `${int}\u00A0`;
});
</script>