fix:Blade 템플릿 내 JSX 스타일 구문 오류 수정
- style={{ }} 구문이 Blade {{ }}로 해석되는 문제
- style={ {} } 형식으로 변경하여 Blade 파싱 우회
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -358,7 +358,7 @@ className="px-3 py-1.5 text-sm bg-stone-100 text-stone-600 rounded-lg hover:bg-s
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div className="overflow-x-auto" style={{ maxHeight: '500px', overflowY: 'auto' }}>
|
||||
<div className="overflow-x-auto" style={ {maxHeight: '500px', overflowY: 'auto'} }>
|
||||
<table className="w-full text-left text-sm text-stone-600">
|
||||
<thead className="bg-stone-50 text-xs uppercase font-medium text-stone-500 sticky top-0">
|
||||
<tr>
|
||||
|
||||
Reference in New Issue
Block a user