fix: 시뮬레이터 공정별 품목 8개 제한 제거
- items.slice(0, 8) 제거하여 모든 품목 표시 - max-h-80 overflow-y-auto로 스크롤 가능하게 변경 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -1279,9 +1279,8 @@ function renderProcessGroups(groupedItems) {
|
||||
<span class="font-medium text-gray-700 text-xs">${label}</span>
|
||||
<span class="text-xs text-gray-500">${items.length}개 품목</span>
|
||||
</div>
|
||||
<div class="p-2 space-y-1 text-xs">
|
||||
${items.slice(0, 8).map(item => renderProcessItem(item)).join('')}
|
||||
${items.length > 8 ? `<div class="text-gray-400 text-center py-1">... +${items.length - 8}개 더</div>` : ''}
|
||||
<div class="p-2 space-y-1 text-xs max-h-80 overflow-y-auto">
|
||||
${items.map(item => renderProcessItem(item)).join('')}
|
||||
</div>
|
||||
<div class="px-3 py-1.5 bg-gray-50 text-right border-t">
|
||||
<span class="text-xs text-gray-500">소계:</span>
|
||||
|
||||
Reference in New Issue
Block a user