This commit is contained in:
legop3
2026-01-26 01:03:09 -05:00
parent 2671247347
commit 2062b4888c
3 changed files with 3 additions and 3 deletions
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -11,7 +11,7 @@
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" /> <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="apple-mobile-web-app-title" content="Multi Roomba Rover" /> <meta name="apple-mobile-web-app-title" content="Multi Roomba Rover" />
<title>Multi Roomba Rover</title> <title>Multi Roomba Rover</title>
<script type="module" crossorigin src="/assets/index-CuKbE2TD.js"></script> <script type="module" crossorigin src="/assets/index-CiK78C9b.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-CVqWOsms.css"> <link rel="stylesheet" crossorigin href="/assets/index-CVqWOsms.css">
</head> </head>
<body> <body>
+1 -1
View File
@@ -122,7 +122,7 @@ export default function DriveDockAction({ layout = 'desktop', expand = false, dr
}; };
const dockValue = docked ? 'Docked' : 'Undocked'; const dockValue = docked ? 'Docked' : 'Undocked';
const dockTone = docked ? 'good' : 'bad'; const dockTone = docked ? 'good' : 'bad';
const chargeValue = charging ? 'Charging' : docked ? 'Not charging yet' : '—'; const chargeValue = charging ? 'Charging' : docked ? 'Charging in 5s' : '—';
const chargeTone = charging ? 'good' : docked ? 'warn' : 'bad'; const chargeTone = charging ? 'good' : docked ? 'warn' : 'bad';
const handleReturnToDrive = async () => { const handleReturnToDrive = async () => {