Softwrap helper text below the Repo field in the create environment form#11227
Draft
zachbai wants to merge 1 commit into
Draft
Softwrap helper text below the Repo field in the create environment form#11227zachbai wants to merge 1 commit into
zachbai wants to merge 1 commit into
Conversation
The helper text ("Type owner/repo and press Enter to add, or select from
dropdown.") and the "Missing a repo? Configure access on GitHub" link
were all siblings inside a single Flex::row(), so they never received a
width constraint and overflowed/clipped on narrower forms.
Fix: split the content into a Flex::column() so the hint occupies the
full field width and soft-wraps naturally, while "Missing a repo?" +
the link sit on a dedicated row below it.
Co-Authored-By: Oz <oz-agent@warp.dev>
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.
Description
Softwrap the helper text below the Repo(s) field in the create/edit environment form.
Previously all three text spans ("Type owner/repo and press Enter to add…", "Missing a repo?", and "Configure access on GitHub") were siblings in a single
Flex::row(). BecauseFlex::row()never constrains a child's width, the text never wrapped — it just overflowed and got clipped.Fix: restructure
render_repo_helper_text_rowto useFlex::column():Linked Issue
ready-to-specorready-to-implement.Testing
./script/runAgent Mode
Conversation: https://app.warp.dev/conversation/1a8ef08e-3d39-4add-910b-5cd47fef9a99
Run: https://oz.warp.dev/runs/019e3cb9-fa5a-75c8-b02d-1980ea4dfab9
This PR was generated with Oz.