-
Notifications
You must be signed in to change notification settings - Fork 356
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
chore: update Column and Row from Hew #8412
Conversation
✅ Deploy Preview for determined-ui ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
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.
I don't know why I didn't catch this in the hew PR, but it seems like alignment isn't working correctly.
</Column> | ||
</Columns> | ||
</Column> | ||
<Column align="right"> |
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.
</Column> | ||
</Columns> | ||
</Column> | ||
<Column align="right"> |
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.
fix: alignment not working
@@ -817,7 +818,7 @@ const F_ExperimentList: React.FC<Props> = ({ project }) => { | |||
/> | |||
</ComparisonView> | |||
{showPagination && ( | |||
<Columns> | |||
<Row> | |||
<Column align="right"> |
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.
fix: alignment
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.
thanks for catching these. I think the Column |
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.
Several still aren't working
</Column> | ||
<Column align="right"> | ||
<Columns> | ||
<Column align="right" width="hug"> |
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.
@@ -817,7 +818,7 @@ const F_ExperimentList: React.FC<Props> = ({ project }) => { | |||
/> | |||
</ComparisonView> | |||
{showPagination && ( | |||
<Columns> | |||
<Row> | |||
<Column align="right"> |
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 like the problem was related to Row always having 100% width, which causes alignment issues when a Row is a child of a Column. addressing in determined-ai/hew#44. |
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!
(cherry picked from commit d4c4195)
Description
Updating changes from Hew
Test Plan
No feature testing required
Commentary (optional)
Checklist
docs/release-notes/
.See Release Note for details.
Ticket
WEB-1722