-
Notifications
You must be signed in to change notification settings - Fork 83
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
refactor: repurpose dashboard-gap as dashboard-spacing #7897
Conversation
return [parseFloat(width)]; | ||
})(); | ||
|
||
// TODO: Fix the default minimum column width |
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.
Is this something to be addressed later?
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.
Addressed now with the current known default
packages/dashboard/test/helpers.ts
Outdated
@@ -111,10 +111,10 @@ export function setRowspan(element: HTMLElement, rowspan?: number): void { | |||
} | |||
|
|||
/** | |||
* Sets the gap between the cells of the dashboard. | |||
* Sets the specing between the cells of the dashboard. |
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.
Nit: typo
* Sets the specing between the cells of the dashboard. | |
* Sets the spacing between the cells of the dashboard. |
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.
Done
Quality Gate passedIssues Measures |
Description
This PR renames
--vaadin-dashboard-gap
to--vaadin-dashboard-spacing
and repurposes it to also affect the dashboard's padding.Part of https://github.com/orgs/vaadin/projects/70/views/1?pane=issue&itemId=75293217
Type of change
Refactor