Fix mobile formatting for responsive entry boxes#771
Merged
Conversation
Collaborator
|
@copilot this can be solved by bumping the webapp repo-review version from 1.0.0 to 1.0.1. |
Agent-Logs-Url: https://github.com/scientific-python/cookie/sessions/c050c5ef-a108-475c-b726-a90ea2ef2a67 Co-authored-by: henryiii <4616906+henryiii@users.noreply.github.com>
Contributor
Author
Done in c6479d5. Bumped the default version in The v1.0.1 release fixes mobile layout by changing the MUI Stack from |
Copilot
AI
changed the title
[WIP] Fix mobile formatting for responsive entry boxes
Fix mobile formatting for responsive entry boxes
Apr 4, 2026
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.
Fixes the webapp's mobile layout by bumping the repo-review-app JS bundle from v1.0.0 to v1.0.1.
Changes Made
helpers/fetch_repo_review_app.sh: Updated default version fromv1.0.0tov1.0.1docs/_includes/interactive_repo_review.html: Updatedrepo-reviewdependency pin from~=1.0.0to~=1.0.1The v1.0.1 release of repo-review fixes mobile responsiveness by changing the MUI
Stackcomponent from a fixeddirection="row"todirection={{ xs: "column", sm: "row" }}(with matchingalignItems={{ xs: "stretch", sm: "flex-start" }}), so the entry boxes (Org/Repo, Branch/Tag, Show, Run button) now stack vertically on narrow screens and display side-by-side on wider screens.