generated from github/custom-element-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 8
Closed
Description
First issue 🎉 ! Hopefully the issues feature wasn't turned on by mistake.
I've implemented this and it's working very well, but I'm wondering if there could be a convention for limiting the number of visible results. If you have 100 items you're filtering on, displaying all those items makes for poor usability.
You could limit visible items with something like this SCSS:
.select-menu-list {
.select-menu-item { display: none; }
.select-menu-item:nth-child(-n+6) { display: block; }
}
However, this doesn't mesh with the hidden attribute that filter-input-element.js toggles.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels
Type
Fields
Give feedbackNo fields configured for issues without a type.