Frontmatter
| id | 8518 |
| title | Use icons for task status in Ticket frontmatter |
| state | Closed |
| labels | enhancementdesignai |
| assignees | tobiu |
| createdAt | Jan 10, 2026, 8:28 PM |
| updatedAt | Jan 10, 2026, 8:32 PM |
| githubUrl | https://github.com/neomjs/neo/issues/8518 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | null |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Jan 10, 2026, 8:32 PM |
Use icons for task status in Ticket frontmatter
tobiu assigned to @tobiu on Jan 10, 2026, 8:32 PM

tobiu
Jan 10, 2026, 8:32 PM
Input from Gemini 3 Pro:
✦ I have implemented the task status icons and styling.
- Component Update:
apps/portal/view/news/tickets/Component.mjsnow replaces[x]with<i class="fa-solid fa-circle-check"></i>and[ ]with<i class="fa-regular fa-circle"></i>.- SCSS Update:
resources/scss/src/apps/portal/news/tickets/Component.scssadds specific coloring:
- Checked: GitHub green (
#2da44e)- Unchecked: GitHub muted grey (
#8c959f)- Refactoring: Moved regex patterns to module-level constants for better maintainability and performance.
tobiu closed this issue on Jan 10, 2026, 8:32 PM
Replace
[x]and[ ]in ticket frontmatter with Font Awesome icons.[x]-><i class="fa-solid fa-circle-check"></i>[ ]-><i class="fa-regular fa-circle"></i>Portal.view.news.tickets.Component.