fix: [approvals] 지출품의서 '사용일자' → '지출일자' 라벨 변경

This commit is contained in:
김보곤
2026-03-06 13:42:48 +09:00
parent bf3ec57095
commit 033e8b12cc
2 changed files with 2 additions and 2 deletions

View File

@@ -55,7 +55,7 @@ class="w-full px-3 py-2 border border-gray-300 rounded-lg text-sm focus:outline-
class="w-full px-3 py-2 border border-gray-300 rounded-lg text-sm focus:outline-none focus:ring-2 focus:ring-blue-500">
</div>
<div>
<label class="block text-xs font-medium text-gray-600 mb-1">사용일자</label>
<label class="block text-xs font-medium text-gray-600 mb-1">지출일자</label>
<input type="date" x-model="formData.usage_date"
class="w-full px-3 py-2 border border-gray-300 rounded-lg text-sm focus:outline-none focus:ring-2 focus:ring-blue-500">
</div>

View File

@@ -57,7 +57,7 @@
@endif
@if(!empty($content['usage_date']))
<div>
<span class="text-xs text-gray-500">사용일자</span>
<span class="text-xs text-gray-500">지출일자</span>
<div class="text-sm font-medium mt-0.5">{{ $content['usage_date'] }}</div>
</div>
@endif