fix: resolve iPad canvas rendering and drawing, extend chat reset to … - #2
Merged
Conversation
…7 days - Remove position:fixed from html/body .canvas-page-body — it broke GPU compositing on iPad Safari, causing blank canvas rendering. Replace with overflow:hidden + overscroll-behavior:none + touch-action:none on canvas only. - Add transform:translateZ(0) to .excalidraw to force proper GPU layer creation on Safari. Guard static canvas with transform:none to prevent unwanted layer promotion. - Fix /ipad-test page: force freedraw tool via Excalidraw API (was defaulting to selection mode, so touch produced no strokes). Add localStorage clearing, comprehensive debug logging, and improved container layout. - Extend chat reset window from 12 hours to 7 days. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
|
Analysis CompleteGenerated ECC bundle from 1 commits | Confidence: 50% View Pull Request #3Repository Profile
Changed Files (3)
Top hotspots
Top directories
Analysis Depth Readiness (commit-history, 7%)ECC Tools uses this to decide whether recommendations should stay at commit-history/setup guidance or expand into CI, security, harness, reference-set, AI-routing, and team backlog work.
Reference Set Readiness (0/7, 0%)
Likely Future Issues (1)
Suggested Follow-up Work (1)
Copy-ready bodies test: add browser coverage for src/app/globals.css + src/app/ipad-test/page.tsx ## Summary
- Add browser or end-to-end coverage for the recently changed user-facing surface.
## Why
- Backfill browser coverage before another user-facing UI change lands on the touched surface.
## Touched paths
- `src/app/globals.css`
- `src/app/ipad-test/page.tsx`
## Validation
- Add or extend browser / e2e coverage for the changed component, page, or flow.
- Exercise the visible user journey that depends on the touched UI surface.Generated Instincts (20)
After merging, import with: Files
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
…7 days
Remove position:fixed from html/body .canvas-page-body — it broke GPU compositing on iPad Safari, causing blank canvas rendering. Replace with overflow:hidden + overscroll-behavior:none + touch-action:none on canvas only.
Add transform:translateZ(0) to .excalidraw to force proper GPU layer creation on Safari. Guard static canvas with transform:none to prevent unwanted layer promotion.
Fix /ipad-test page: force freedraw tool via Excalidraw API (was defaulting to selection mode, so touch produced no strokes). Add localStorage clearing, comprehensive debug logging, and improved container layout.
Extend chat reset window from 12 hours to 7 days.