From d2260ac7974682aece560d4637badf76990fe9f5 Mon Sep 17 00:00:00 2001 From: Simon Diesenreiter Date: Sat, 4 Apr 2026 23:53:02 +0200 Subject: [PATCH] fix: fix runtime errors, refs NOISSUE --- ai_software_factory/dashboard_ui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ai_software_factory/dashboard_ui.py b/ai_software_factory/dashboard_ui.py index 6bc46a2..eddc117 100644 --- a/ai_software_factory/dashboard_ui.py +++ b/ai_software_factory/dashboard_ui.py @@ -39,7 +39,7 @@ def create_dashboard(): return # Create main card - with ui.card().col().classes('w-full max-w-6xl mx-auto').props('elevated').style('max-width: 1200px; margin: 0 auto;') as main_card: + with ui.card().classes('w-full max-w-6xl mx-auto').props('elevated').style('max-width: 1200px; margin: 0 auto;') as main_card: # Header section with ui.row().classes('items-center gap-4 mb-6').style('padding: 20px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); border-radius: 12px; color: white;') as header_row: title = ui.label('AI Software Factory').style('font-size: 28px; font-weight: bold; margin: 0;')