-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change rerun button order #176
Conversation
const SizedBox(width: Spacing.level2), | ||
_RerunButton(testExecution: testExecution), | ||
const SizedBox(width: Spacing.level2), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
perhaps we could either merge the SizedBox or remove one of them
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems like it was level4 before adding the Rerun button here, so I decided to restore it to level 4 here
_RerunButton(testExecution: testExecution), | ||
const SizedBox(width: Spacing.level4), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the screenshot you supplied shows more spacing between rerun and signoff button than between signoff button and CI link. Perhaps we can reduce this spacing?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
3 seems to strike a balance
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good!
This small change moves the rerun button from the left of the environment name to the right handside, just before the test execution review button.
This was suggested as a user experience improvement.
Screenshot