Fix edge-label arrow flip + mobile top-bar/captcha overflow#75
Merged
Conversation
- Edge-label directional icon now flips with the edge: edgeLabelPlacement keeps text upright by stripping 180° when the edge points "backward"; carry that lost 180° on the .edge-label-icon so its arrow tracks the real direction (and flips on flip-direction). The main arrowhead already flipped; the label icon didn't. - Mobile top bar: hide the status chip + Collaborators on small screens (the hamburger handles nav there; they were eating the width). Genericize the "Neo4j GraphDB" label → "Graph DB" (core is Neo4j-optional; don't claim Neo4j). - Mobile captcha: CodeCaptcha is now fluid (w-full/max-w-full, p-3 sm:p-5, text-3xl sm:text-5xl) and GuestModeDialog scrolls (max-h-[90vh] overflow-y-auto) so the captcha + Continue button fit narrow screens. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
🧪 Comprehensive Test Suite
Full-stack smoke gate runs in the CI workflow. |
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.
Dogfood fixes:
Edge-label arrow doesn't flip on flip-direction. The main arrowhead flips
(it's rotated by the edge angle), but the directional icon inside the edge
label didn't. Root cause:
edgeLabelPlacementstrips 180° to keep label textupright, which leaves the icon pointing the old way. Fix: carry that lost 180°
on
.edge-label-iconso its arrow tracks the real edge direction.Mobile: top bar overflow + wrong label. The status chip + Collaborators
button ate the small-screen width. Now
hidden md:flex(the hamburger handlesmobile nav). Also genericized "Neo4j GraphDB" → "Graph DB" (core is
Neo4j-optional; the hard "Neo4j" claim was inaccurate).
Mobile: captcha overflow.
CodeCaptchais fluid (w-full/max-w-full,p-3 sm:p-5, text-3xl sm:text-5xl) and
GuestModeDialogscrolls(max-h-[90vh] overflow-y-auto) so the captcha + Continue fit narrow screens.
web typecheck: 0 errors. (Local box is under heavy shared load; CI is authoritative.)