diff --git a/frontend/src/components/ProbeList.tsx b/frontend/src/components/ProbeList.tsx
index 564373c..29c18c8 100644
--- a/frontend/src/components/ProbeList.tsx
+++ b/frontend/src/components/ProbeList.tsx
@@ -18,8 +18,9 @@ export function ProbeList({ probes, planets, onBodySelect, selectedBody, onReset
// Auto-expand the group when a body is selected from the 3D scene
useEffect(() => {
if (selectedBody) {
- // Auto-collapse panel for focus mode
- setIsCollapsed(true);
+ // Don't auto-collapse panel if it's already open
+ // Only auto-collapse if panel was already collapsed
+ // This allows users to keep the panel open while browsing bodies
// Auto-expand the group that contains the selected body
setExpandedGroup(selectedBody.type);
@@ -114,10 +115,10 @@ export function ProbeList({ probes, planets, onBodySelect, selectedBody, onReset
天体导航
-