-
Notifications
You must be signed in to change notification settings - Fork 351
feat: enhance category selection and filtering with multiple selection #12667
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
base: main
Are you sure you want to change the base?
feat: enhance category selection and filtering with multiple selection #12667
Conversation
🎉 Snyk checks have passed. No issues have been found so far.✅ security/snyk check is complete. No issues have been found. (View Details) ✅ license/snyk check is complete. No issues have been found. (View Details) |
// Allow holding Ctrl/Cmd key for multiple selection | ||
// Clear other selections if not using Ctrl/Cmd | ||
if (!e.ctrlKey && !e.metaKey) { | ||
selectedCategories.clear(); | ||
} |
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.
I don't know if that is a good idea as it makes the multiple selection feature "hidden".
I thought this was less disruptive than checkboxes everywhere.
This was the only idea I came up with to keep previous visual appearance.
Introduce support for multiple category selection and filtering in the listing interface. This change allows users to select multiple categories simultaneously using Ctrl or Cmd.
(no changelog entry for now to avoid conflict)
Screen.Recording.2025-05-02.at.19.58.46.mov