Replace inline tags with hoverable "Tags" pill on workshops index and bookmarks#1003
Draft
Replace inline tags with hoverable "Tags" pill on workshops index and bookmarks#1003
Conversation
Co-authored-by: maebeale <7607813+maebeale@users.noreply.github.com>
Copilot stopped work on behalf of
maebeale due to an error
February 15, 2026 07:17
Collaborator
|
@copilot try again. and also add Tags: [tag_count] next to the Bookmarked: [boomark_count], that when hovered, shows all sector and category tags. |
- Remove tags from description area in workshops index row - Add "Tags: [count]" next to "Bookmarked: [count]" in metadata section - Implement hover tooltip to show all sector and category tags - Apply same changes to bookmarks personal row for workshops Co-authored-by: maebeale <7607813+maebeale@users.noreply.github.com>
Contributor
Author
Done! I've implemented the tags feature as requested: Changes in commit 44f5ece:
Visual result: The tooltip shows all sector and category tags joined by commas, with proper styling and positioning. |
- Add collect_all_tags helper method in TaggingsHelper - Refactor index_row and personal_row to use the helper - Improves maintainability and ensures consistent behavior Co-authored-by: maebeale <7607813+maebeale@users.noreply.github.com>
- Add alphabetical sorting to sectors in collect_all_tags - Ensures predictable and consistent tag display order - Sectors sorted by name, categories by position then name Co-authored-by: maebeale <7607813+maebeale@users.noreply.github.com>
Co-authored-by: maebeale <7607813+maebeale@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Remove tags from workshops index row and bookmarks
Replace inline tags with hoverable "Tags" pill on workshops index and bookmarks
Feb 15, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.


What is the goal of this PR and why is this important?
This PR improves the workshop index and bookmarks layout by replacing the inline tags display (which was truncated to 150 characters) with a cleaner, more space-efficient "Tags" pill that shows the tag count. Users can hover over the pill to see all sector and category tags without truncation.
How did you approach the change?
Helper Method (
app/helpers/taggings_helper.rb)collect_all_tagshelper method to centralize tag collection logicWorkshop Index Row (
app/views/workshops/_index_row.html.erb)grouputilities to display all tagshide_tagsparameterBookmarks Personal Row (
app/views/bookmarks/_personal_row.html.erb)Implementation Details:
Anything else to add?
Visual Result:
Before hover:

After hover (showing all tags):

Benefits:
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.