c1c55e2dce
ISSUE: Grid height was constrained to min-height: 220px, leaving large unused space on page (3 rows visible, lots of empty area below). PRINCIPLE: Grid must expand to fill available vertical space in viewport. CHANGES: ModelOperationTable.vue (.grid-wrapper) - Removed: min-height: 220px (artificial constraint) - Added: height: 100% - Added: min-height: 0 (critical for flex overflow behavior) RESULT: Grid now spans full available height in flex container, utilizing screen space efficiently. Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>