fixed app stuff in frontend

This commit is contained in:
user
2026-03-28 20:35:26 +02:00
parent 7c210ffe8f
commit 49ff819cb5
3 changed files with 30 additions and 8 deletions

View File

@@ -107,3 +107,12 @@ Update rule:
- Updated Android launch flow in orchestrator to resolve launcher activity via `cmd package resolve-activity` and launch with `am start -n <activity>`.
- Kept `monkey` as fallback only when launcher activity cannot be resolved, reducing redroid/device-specific `monkey` failures during session prepare.
### 16 — Fixed Device Detail Page Stale Revert After Update
- Root cause: the dashboard device detail VM reused SvelteKit's cached `getDeviceByIdSQ()` query without refreshing it, so after saving edits the page reloaded stale device data and overwrote the form with old values.
- Fix: in `device-details.vm.svelte.ts`, refresh the cached query before reading `query.current`, matching the earlier remote-query cache fix pattern used for links.
### 17 — Frontend Session Viewport Rendering Fix
- Updated `/session` layout to a full `100dvh` stream container, removed reserved top bar space, and moved status text into an overlay so the embedded stream gets maximum visible height on mobile.