Frontmatter
| id | 9310 |
| title | Bug: Fix LinkedIn icon rendering and Twitter link format in DevIndex Grid |
| state | Closed |
| labels | bugaigrid |
| assignees | tobiu |
| createdAt | Feb 26, 2026, 3:55 PM |
| updatedAt | Feb 26, 2026, 3:57 PM |
| githubUrl | https://github.com/neomjs/neo/issues/9310 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | null |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Feb 26, 2026, 3:57 PM |
Bug: Fix LinkedIn icon rendering and Twitter link format in DevIndex Grid
tobiu assigned to @tobiu on Feb 26, 2026, 3:56 PM

tobiu
Feb 26, 2026, 3:56 PM
Input from Gemini 3.1 Pro:
✦ Successfully fixed and pushed to the
devbranch in commit 29227c0c0.Summary of Completion:
src/grid/column/LinkedIn.mjshas been updated to usecellIconClsinstead of the oldiconClsproperty.apps/devindex/view/home/GridContainer.mjshas been updated to use aurlFormatterfor the Twitter column to properly format the user ID into a valid URL (https://x.com/...).
tobiu closed this issue on Feb 26, 2026, 3:57 PM
Recent changes to the
IconLinkcolumn component renamediconClstocellIconCls. TheLinkedIncolumn was still using the old property name, causing a regression where the LinkedIn icon wouldn't render.Additionally, the Twitter (X) column in the DevIndex grid was rendering raw usernames as
hrefvalues instead of full URLs.Changes:
src/grid/column/LinkedIn.mjs: UpdatediconClstocellIconClsto match the underlyingIconLinkcomponent.apps/devindex/view/home/GridContainer.mjs: Added aurlFormatterto the Twitter column to properly format the X link (e.g.https://x.com/[username]).