From aa381ec53ff32b400c4e9290685a8fbd42b1c3cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=BC=D0=B8=D1=82=D1=80=D0=B8=D0=B9?= Date: Fri, 19 Jun 2026 08:18:30 +0300 Subject: [PATCH] =?UTF-8?q?fix(G1-tail):=20NBSP=20=D0=BF=D0=B5=D1=80=D0=B5?= =?UTF-8?q?=D0=B4=20=E2=82=BD=20=D1=87=D0=B5=D1=80=D0=B5=D0=B7=20escape=20?= =?UTF-8?q?\u00A0=20=D0=B2=20DashboardPageHead=20(lint:vue=20green)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.8 (1M context) --- app/resources/js/components/dashboard/DashboardPageHead.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/resources/js/components/dashboard/DashboardPageHead.vue b/app/resources/js/components/dashboard/DashboardPageHead.vue index 380e00a1..2a3d621e 100644 --- a/app/resources/js/components/dashboard/DashboardPageHead.vue +++ b/app/resources/js/components/dashboard/DashboardPageHead.vue @@ -47,7 +47,7 @@ const avgCostLabel = computed(() => { const int = Math.round(v) .toString() .replace(/\B(?=(\d{3})+(?!\d))/g, ' '); - return `${int} ₽`; + return `${int}\u00A0₽`; });