-
Database Connection Lost
+
Connection Lost
- Neo4j database is not available. Graph features are limited.
+ The server is unreachable. Some features are limited until it reconnects.
- {health?.services?.neo4j?.error && (
+ {healthError && (
- {health.services.neo4j.error}
+ {healthError}
)}
@@ -404,7 +427,7 @@ export function Workspace() {
+
setInspectorNode(null)} />
)}
@@ -414,8 +437,9 @@ export function Workspace() {
)}
- {/* Mini-Map Navigation - Bottom Right Corner */}
- {viewMode === 'graph' && currentGraph && showMiniMap && createPortal(
+ {/* Mini-Map Navigation - Bottom Right Corner (hidden on mobile: it covers too
+ much of a phone screen, and panning the graph by touch is the primary nav there) */}
+ {viewMode === 'graph' && currentGraph && showMiniMap && !isMobile && createPortal(
{/* Mini-Map Header */}
@@ -442,8 +466,8 @@ export function Workspace() {
document.body
)}
- {/* Mini-Map Toggle Button - Shows when mini-map is hidden */}
- {viewMode === 'graph' && currentGraph && !showMiniMap && createPortal(
+ {/* Mini-Map Toggle Button - Shows when mini-map is hidden (desktop only) */}
+ {viewMode === 'graph' && currentGraph && !showMiniMap && !isMobile && createPortal(