Review stream tweaks (#20648)
CI / AMD64 Build (push) Waiting to run
CI / ARM Build (push) Waiting to run
CI / Jetson Jetpack 6 (push) Waiting to run
CI / AMD64 Extra Build (push) Blocked by required conditions
CI / ARM Extra Build (push) Blocked by required conditions
CI / Synaptics Build (push) Blocked by required conditions
CI / Assemble and push default build (push) Blocked by required conditions

* add detail stream selector to mobile drawer

* tweak getDurationFromTimestamps for i18n and abbreviations

* improve lifecycle description labeling

* i18n

* match figma

* fix progress line and add area and ratio tooltip

* allow clicking on chevron without triggering playback

* tweaks

* add key

* change wording

* clean up

* clean up

* remove check

* clean up
This commit is contained in:
Josh Hawkins
2025-10-24 07:50:06 -05:00
committed by GitHub
parent e2da8aa04c
commit 49f5d595ea
8 changed files with 450 additions and 232 deletions
@@ -51,6 +51,15 @@ export default function MobileTimelineDrawer({
>
{t("events.label")}
</div>
<div
className={`mx-4 w-full py-2 text-center smart-capitalize ${selected == "detail" ? "rounded-lg bg-secondary" : ""}`}
onClick={() => {
onSelect("detail");
setDrawer(false);
}}
>
{t("detail.label")}
</div>
</DrawerContent>
</Drawer>
);