dev #80
Reference in New Issue
Block a user
Delete Branch "dev"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
On mobile (iOS Safari, 390px), the schema viewport's one-finger touchmove handler called setPan() unconditionally — even at zoom 1 with nothing to pan — which makes iOS suppress the native page scroll. Users couldn't reach the parts list below the fold (real trial session: 16 rage clicks, 0 OEM codes copied, no purchase). - use-schema-interaction: gate one-finger pan on zoom > 1 so the gesture falls through to native page scroll when not zoomed in. - schema-viewer: set touch-action (pan-y pinch-zoom at zoom 1, none when zoomed) on the viewport; shrink mobile schema height 400px -> 280px so the first parts rows peek below the fold and signal "more below". - parts-panel: after a hotspot tap, scrollIntoView uses block:"start" on mobile (panel is below the fold) and block:"center" on desktop, so the selection is actually visible. Tests: new Vitest hook test asserts no pan at zoom<=1, pans at zoom>1, and pinch-zoom still works; new parts-panel scroll test asserts mobile vs desktop block target. Also fixes a pre-existing typo in the empty-state test ("Geri don" -> "Geri dön"). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>