-
-
Notifications
You must be signed in to change notification settings - Fork 542
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
Asset browser pagination size changer #3957
Asset browser pagination size changer #3957
Conversation
Uses localStorage to store the option so it'll persist for a while. Between this feature and shift-to-select-multiple, should be able to resolve #3142.
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.
We have a HasPagination
mixin that the entries listing (Listing.vue) uses that already handles saving the pagination size to user preferences. Maybe we can use that instead?
Wouldn't that use the same |
It uses the Here's how it does it in the entries/Listing component:
You'd do something like |
Ah okay thanks, I'll give it a shot. |
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.
🔥
Uses localStorage to store the option so it'll persist for a while.
Between this feature and shift-to-select-multiple, should be able to resolve #3142.