fix(webui): add missing imports to App.jsx (Issue #329) — P0 BUG FIX
Critical bug fix: - Added missing StatusHeader import (used in JSX line 215) - Added missing LogViewer import (used in JSX line 291) - Added missing MotorCurrentGraph import (used in JSX line 264) These imports were referenced in JSX but not imported, causing dashboard crashes on load. Build verification: - 122 modules, all compiled successfully - No errors or warnings - Bundle: 255.38 KB main Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
f506c89960
commit
ba39e9ba26
@ -22,6 +22,7 @@ import { useRosbridge } from './hooks/useRosbridge.js';
|
|||||||
|
|
||||||
// Social panels
|
// Social panels
|
||||||
import { StatusPanel } from './components/StatusPanel.jsx';
|
import { StatusPanel } from './components/StatusPanel.jsx';
|
||||||
|
import { StatusHeader } from './components/StatusHeader.jsx';
|
||||||
import { FaceGallery } from './components/FaceGallery.jsx';
|
import { FaceGallery } from './components/FaceGallery.jsx';
|
||||||
import { ConversationLog } from './components/ConversationLog.jsx';
|
import { ConversationLog } from './components/ConversationLog.jsx';
|
||||||
import { ConversationHistory } from './components/ConversationHistory.jsx';
|
import { ConversationHistory } from './components/ConversationHistory.jsx';
|
||||||
@ -34,6 +35,7 @@ import PoseViewer from './components/PoseViewer.jsx';
|
|||||||
import { BatteryPanel } from './components/BatteryPanel.jsx';
|
import { BatteryPanel } from './components/BatteryPanel.jsx';
|
||||||
import { BatteryChart } from './components/BatteryChart.jsx';
|
import { BatteryChart } from './components/BatteryChart.jsx';
|
||||||
import { MotorPanel } from './components/MotorPanel.jsx';
|
import { MotorPanel } from './components/MotorPanel.jsx';
|
||||||
|
import { MotorCurrentGraph } from './components/MotorCurrentGraph.jsx';
|
||||||
import { MapViewer } from './components/MapViewer.jsx';
|
import { MapViewer } from './components/MapViewer.jsx';
|
||||||
import { ControlMode } from './components/ControlMode.jsx';
|
import { ControlMode } from './components/ControlMode.jsx';
|
||||||
import { SystemHealth } from './components/SystemHealth.jsx';
|
import { SystemHealth } from './components/SystemHealth.jsx';
|
||||||
@ -53,6 +55,9 @@ import { CameraViewer } from './components/CameraViewer.jsx';
|
|||||||
// Event log (issue #192)
|
// Event log (issue #192)
|
||||||
import { EventLog } from './components/EventLog.jsx';
|
import { EventLog } from './components/EventLog.jsx';
|
||||||
|
|
||||||
|
// Log viewer (issue #275)
|
||||||
|
import { LogViewer } from './components/LogViewer.jsx';
|
||||||
|
|
||||||
// Joystick teleop (issue #212)
|
// Joystick teleop (issue #212)
|
||||||
import JoystickTeleop from './components/JoystickTeleop.jsx';
|
import JoystickTeleop from './components/JoystickTeleop.jsx';
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user