diff --git a/frontend/src/components/layout/AISidebar.tsx b/frontend/src/components/layout/AISidebar.tsx index b48415d..7ea449b 100644 --- a/frontend/src/components/layout/AISidebar.tsx +++ b/frontend/src/components/layout/AISidebar.tsx @@ -27,11 +27,11 @@ export function AISidebar() { })(); }, []); - // Collapsed: narrow icon strip + // Collapsed: narrow icon strip (desktop only, hidden on mobile) if (aiSidebarCollapsed) { return (
+ KI Assistent
{loading ? ( @@ -83,6 +82,42 @@ export function AISidebar() { )}
- + + {/* Desktop: resizable panel */} + +
+
+ KI Assistent + +
+
+ {loading ? ( +
Laden...
+ ) : sessionId ? ( + + ) : ( +
+ Session konnte nicht erstellt werden +
+ )} +
+
+
+ ); }