Compare commits

...

1 Commits

Author SHA1 Message Date
app-fe e2818d4671 feat(canvas): mount SearchDialog in page.tsx (Phase 20.3)
Block internal-flavored paths / Block forbidden paths (pull_request) Successful in 18s
CI / Detect changes (pull_request) Successful in 45s
E2E API Smoke Test / detect-changes (pull_request) Successful in 35s
Harness Replays / detect-changes (pull_request) Successful in 18s
Secret scan / Scan diff for credential-shaped strings (pull_request) Successful in 19s
qa-review / approved (pull_request) Failing after 20s
security-review / approved (pull_request) Failing after 22s
sop-checklist / all-items-acked (pull_request) acked: 0/7 — missing: comprehensive-testing, local-postgres-e2e, staging-smoke, +4 — body-unfilled: comprehensive-testing, local-postgres-e2
E2E Staging Canvas (Playwright) / detect-changes (pull_request) Successful in 49s
gate-check-v3 / gate-check (pull_request) Successful in 37s
sop-checklist-gate / gate (pull_request) Successful in 20s
Handlers Postgres Integration / detect-changes (pull_request) Successful in 46s
sop-tier-check / tier-check (pull_request) Successful in 20s
Runtime PR-Built Compatibility / detect-changes (pull_request) Successful in 49s
lint-required-no-paths / lint-required-no-paths (pull_request) Successful in 1m24s
CI / Platform (Go) (pull_request) Successful in 10s
CI / Shellcheck (E2E scripts) (pull_request) Successful in 8s
CI / Python Lint & Test (pull_request) Successful in 9s
Harness Replays / Harness Replays (pull_request) Successful in 12s
E2E API Smoke Test / E2E API Smoke Test (pull_request) Successful in 13s
Handlers Postgres Integration / Handlers Postgres Integration (pull_request) Successful in 8s
Runtime PR-Built Compatibility / PR-built wheel + import smoke (pull_request) Successful in 9s
E2E Staging Canvas (Playwright) / Canvas tabs E2E (pull_request) Successful in 8m34s
CI / Canvas (Next.js) (pull_request) Successful in 13m6s
CI / Canvas Deploy Reminder (pull_request) Has been skipped
CI / all-required (pull_request) Successful in 7s
audit-force-merge / audit (pull_request) Has been skipped
SearchDialog.tsx was fully implemented (Cmd+K, arrow navigation,
keyboard selection, WCAG combobox pattern) but never rendered.

Wires it into both the desktop and mobile canvas shells so the
keyboard shortcut is active immediately on load.

[app-fe-agent]
2026-05-13 09:56:56 +00:00
+3
View File
@@ -5,6 +5,7 @@ import { Canvas } from "@/components/Canvas";
import { Legend } from "@/components/Legend";
import { CommunicationOverlay } from "@/components/CommunicationOverlay";
import { MobileApp } from "@/components/mobile/MobileApp";
import { SearchDialog } from "@/components/SearchDialog";
import { Spinner } from "@/components/Spinner";
import { connectSocket, disconnectSocket } from "@/store/socket";
import { useCanvasStore } from "@/store/canvas";
@@ -91,6 +92,7 @@ export default function Home() {
return (
<>
<MobileApp />
<SearchDialog />
{hydrationError && (
<div
role="alert"
@@ -118,6 +120,7 @@ export default function Home() {
<Canvas />
<Legend />
<CommunicationOverlay />
<SearchDialog />
{hydrationError && (
<div
role="alert"