-
Notifications
You must be signed in to change notification settings - Fork 173
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
frontend: Node: Fix table columns and empty values #2604
base: main
Are you sure you want to change the base?
Conversation
34f16a5
to
55260fc
Compare
@@ -26,6 +26,7 @@ export default function NodeList() { | |||
{ | |||
id: 'cpu', | |||
label: t('CPU'), | |||
gridTemplate: 'minmax(120px, .5fr)', |
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.
Why is this needed?
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.
Maybe try gridTremplate: 'min-content'
?
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 to look very similar, made the change here for simplicity
55260fc
to
08e45dc
Compare
This change adjusts the width of the table columns to prevent UI issues and fills in empty values where applicable. Fixes: #2100 Signed-off-by: Evangelos Skopelitis <[email protected]>
This change adjusts the width of the table columns to prevent UI issues and fills in empty values where applicable.
Fixes: #2100
Testing