From 36992d5c2311ff3715c3c4ecbdd03d334e729213 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=B3=B4=EA=B3=A4?= Date: Sat, 28 Feb 2026 17:51:54 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20[barobill]=20SVG=20viewBox/path=20?= =?UTF-8?q?=EC=86=8D=EC=84=B1=20=EC=9D=B4=EC=A4=91=20=EC=9D=B8=EC=BD=94?= =?UTF-8?q?=EB=94=A9=20=EC=98=A4=EB=A5=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - " 로 이스케이프된 SVG HTML을 component prop에 직접 전달하면 sanitizeComponentAttribute()가 이중 인코딩하여 SVG 파서 에러 발생 - @php 블록에서 변수로 정의 후 prop 전달 방식으로 변경 - 영향 파일: settings, etax, hometax 바로빌 페이지 3개 --- resources/views/barobill/etax/index.blade.php | 5 ++++- resources/views/barobill/hometax/index.blade.php | 5 ++++- resources/views/barobill/settings/index.blade.php | 5 ++++- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/resources/views/barobill/etax/index.blade.php b/resources/views/barobill/etax/index.blade.php index 6b01f322..aac3b0b3 100644 --- a/resources/views/barobill/etax/index.blade.php +++ b/resources/views/barobill/etax/index.blade.php @@ -4,13 +4,16 @@ @section('content') +@php +$headerIcon = ''; +@endphp
diff --git a/resources/views/barobill/hometax/index.blade.php b/resources/views/barobill/hometax/index.blade.php index 4eb59d56..5125de7c 100644 --- a/resources/views/barobill/hometax/index.blade.php +++ b/resources/views/barobill/hometax/index.blade.php @@ -4,13 +4,16 @@ @section('content') +@php +$headerIcon = ''; +@endphp
diff --git a/resources/views/barobill/settings/index.blade.php b/resources/views/barobill/settings/index.blade.php index c90544e3..7ea7e891 100644 --- a/resources/views/barobill/settings/index.blade.php +++ b/resources/views/barobill/settings/index.blade.php @@ -4,13 +4,16 @@ @section('content') +@php +$headerIcon = ''; +@endphp