mirror of
https://github.com/legop3/MultiRoombaRover.git
synced 2026-09-16 01:21:20 -04:00
removed title counters finally!!!
This commit is contained in:
File diff suppressed because one or more lines are too long
@@ -11,7 +11,7 @@
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
|
||||
<meta name="apple-mobile-web-app-title" content="Roomba Rover" />
|
||||
<title>Roomba Rover</title>
|
||||
<script type="module" crossorigin src="/assets/index-DqC5SblS.js"></script>
|
||||
<script type="module" crossorigin src="/assets/index-D13hsMAR.js"></script>
|
||||
<link rel="stylesheet" crossorigin href="/assets/index-Dva9v7lV.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
@@ -290,7 +290,7 @@ export default function HomeAssistantControls() {
|
||||
);
|
||||
|
||||
return (
|
||||
<CardFrame title="Room Controls" meta={entities.length} accent="#14b8a6" actions={actions} bodyClassName="space-y-0.5 text-base">
|
||||
<CardFrame title="Room Controls" accent="#14b8a6" actions={actions} bodyClassName="space-y-0.5 text-base">
|
||||
{controlsLocked ? (
|
||||
<p className="rounded border border-amber-600/60 bg-amber-900/40 px-1 py-0.5 text-xs text-amber-100">
|
||||
{lockState === 'off'
|
||||
|
||||
@@ -9,7 +9,7 @@ export default function LogPanel() {
|
||||
const logs = useSessionSelector((state) => state.logs);
|
||||
const rendered = useMemo(() => logs.slice().reverse(), [logs]);
|
||||
return (
|
||||
<CardFrame title="Server logs" meta={logs.length} accent="#f97316" bodyClassName="space-y-0.5 text-base">
|
||||
<CardFrame title="Server logs" accent="#f97316" bodyClassName="space-y-0.5 text-base">
|
||||
<div className="surface h-64 overflow-y-auto font-mono text-xs">
|
||||
{logs.length === 0 ? (
|
||||
<p>No logs yet.</p>
|
||||
|
||||
@@ -60,7 +60,6 @@ export default function RawUserPilePanel({
|
||||
return (
|
||||
<CardFrame
|
||||
title={!hideHeader ? 'Users' : ''}
|
||||
meta={!hideHeader ? sorted.length : null}
|
||||
accent="#94a3b8"
|
||||
hideHeader={hideHeader}
|
||||
fillHeight={fillHeight}
|
||||
|
||||
@@ -150,7 +150,7 @@ export default function ReplaySourcesPanel({ panelId = 'replay-sources', fillHei
|
||||
const listWrapClass = fillHeight ? 'flex-1 min-h-0 overflow-y-auto' : '';
|
||||
|
||||
return (
|
||||
<CardFrame title="Replay Sources" meta={sources.length} accent="#06b6d4" fillHeight={fillHeight} bodyClassName="space-y-0.5 text-sm">
|
||||
<CardFrame title="Replay Sources" accent="#06b6d4" fillHeight={fillHeight} bodyClassName="space-y-0.5 text-sm">
|
||||
<div className={`grid gap-0.5 md:grid-cols-2 ${listWrapClass}`}>
|
||||
<GroupList title="Rovers" items={grouped.rovers} selected={selected} onToggle={toggleKey} />
|
||||
<GroupList title="Room Cams" items={grouped.rooms} selected={selected} onToggle={toggleKey} />
|
||||
|
||||
@@ -88,7 +88,6 @@ export default function RoomCameraPanel({
|
||||
return (
|
||||
<CardFrame
|
||||
title="Room cameras"
|
||||
meta={cameras.length}
|
||||
accent="#38bdf8"
|
||||
actions={actions}
|
||||
hideHeader={hideHeader}
|
||||
|
||||
Reference in New Issue
Block a user