-
-
Notifications
You must be signed in to change notification settings - Fork 202
Refactor: DevRank Grid Location Column (VDOM + SCSS) #8942
Copy link
Copy link
Closed
Labels
Description
The 'Location' column in the DevRank grid suffers from layout issues when the text is too long, causing the row height to expand.
Requirements:
- Refactor Renderer: Switch the 'Location' column renderer from returning an HTML string to returning a VDOM object.
- CSS Truncation: Implement text truncation (
text-overflow: ellipsis,white-space: nowrap) to handle long location names gracefully without breaking the row height. - SCSS Extraction: Move all inline styles for this column into the SCSS file (
apps/devrank/resources/scss/view/GridContainer.scssor similar).
Acceptance Criteria:
- Long location names are truncated with an ellipsis.
- Grid row heights remain consistent.
- No inline styles in the VDOM renderer.
Reactions are currently unavailable