[PR #1395] [MERGED] Enhancement #906/Persist User Preference for Entries Amount #1056

Closed
opened 2025-11-13 12:17:11 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/fosrl/pangolin/pull/1395
Author: @Pallavikumarimdb
Created: 9/1/2025
Status: Merged
Merged: 9/2/2025
Merged by: @oschwartz10612

Base: devHead: enhancement-#906/persist-amount-of-entries


📝 Commits (2)

📊 Changes

16 files changed (+172 additions, -14 deletions)

View changed files

📝 src/app/[orgId]/settings/access/invitations/InvitationsDataTable.tsx (+1 -0)
📝 src/app/[orgId]/settings/access/roles/RolesDataTable.tsx (+1 -0)
📝 src/app/[orgId]/settings/access/users/UsersDataTable.tsx (+1 -0)
📝 src/app/[orgId]/settings/api-keys/OrgApiKeysDataTable.tsx (+1 -0)
📝 src/app/[orgId]/settings/clients/ClientsDataTable.tsx (+1 -0)
📝 src/app/[orgId]/settings/domains/DomainsDataTable.tsx (+1 -0)
📝 src/app/[orgId]/settings/resources/ResourcesTable.tsx (+61 -3)
📝 src/app/[orgId]/settings/share-links/ShareLinksDataTable.tsx (+1 -0)
📝 src/app/[orgId]/settings/sites/SitesDataTable.tsx (+1 -0)
📝 src/app/admin/api-keys/ApiKeysDataTable.tsx (+1 -0)
📝 src/app/admin/idp/AdminIdpDataTable.tsx (+1 -0)
📝 src/app/admin/idp/[idpId]/policies/PolicyDataTable.tsx (+1 -0)
📝 src/app/admin/license/LicenseKeysDataTable.tsx (+1 -0)
📝 src/app/admin/users/AdminUsersDataTable.tsx (+1 -0)
📝 src/components/DataTablePagination.tsx (+15 -5)
📝 src/components/ui/data-table.tsx (+83 -6)

📄 Description

Community Contribution License Agreement

By creating this pull request, I grant the project maintainers an unlimited,
perpetual license to use, modify, and redistribute these contributions under any terms they
choose, including both the AGPLv3 and the Fossorial Commercial license terms. I
represent that I have the right to grant this license for all contributed content.

Description

This PR addresses usability issues highlighted in #906 .

4.4 — Does Not Save Amount of Entries
The “entries per page” setting is not remembered and resets after every page refresh.

Fix

  • Persist user preference for the number of entries displayed.
  • Ensure the setting is retained across sessions.

Extracted from PR : #1283

How to test?


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/fosrl/pangolin/pull/1395 **Author:** [@Pallavikumarimdb](https://github.com/Pallavikumarimdb) **Created:** 9/1/2025 **Status:** ✅ Merged **Merged:** 9/2/2025 **Merged by:** [@oschwartz10612](https://github.com/oschwartz10612) **Base:** `dev` ← **Head:** `enhancement-#906/persist-amount-of-entries` --- ### 📝 Commits (2) - [`ee9101e`](https://github.com/fosrl/pangolin/commit/ee9101e738cbdf064cc1c028d13472b0b60fe089) Save Amount of Entries - [`e9494ef`](https://github.com/fosrl/pangolin/commit/e9494efa8eeb44957792ae3bbcc687cd89de4c71) quick fix ### 📊 Changes **16 files changed** (+172 additions, -14 deletions) <details> <summary>View changed files</summary> 📝 `src/app/[orgId]/settings/access/invitations/InvitationsDataTable.tsx` (+1 -0) 📝 `src/app/[orgId]/settings/access/roles/RolesDataTable.tsx` (+1 -0) 📝 `src/app/[orgId]/settings/access/users/UsersDataTable.tsx` (+1 -0) 📝 `src/app/[orgId]/settings/api-keys/OrgApiKeysDataTable.tsx` (+1 -0) 📝 `src/app/[orgId]/settings/clients/ClientsDataTable.tsx` (+1 -0) 📝 `src/app/[orgId]/settings/domains/DomainsDataTable.tsx` (+1 -0) 📝 `src/app/[orgId]/settings/resources/ResourcesTable.tsx` (+61 -3) 📝 `src/app/[orgId]/settings/share-links/ShareLinksDataTable.tsx` (+1 -0) 📝 `src/app/[orgId]/settings/sites/SitesDataTable.tsx` (+1 -0) 📝 `src/app/admin/api-keys/ApiKeysDataTable.tsx` (+1 -0) 📝 `src/app/admin/idp/AdminIdpDataTable.tsx` (+1 -0) 📝 `src/app/admin/idp/[idpId]/policies/PolicyDataTable.tsx` (+1 -0) 📝 `src/app/admin/license/LicenseKeysDataTable.tsx` (+1 -0) 📝 `src/app/admin/users/AdminUsersDataTable.tsx` (+1 -0) 📝 `src/components/DataTablePagination.tsx` (+15 -5) 📝 `src/components/ui/data-table.tsx` (+83 -6) </details> ### 📄 Description ## Community Contribution License Agreement By creating this pull request, I grant the project maintainers an unlimited, perpetual license to use, modify, and redistribute these contributions under any terms they choose, including both the AGPLv3 and the Fossorial Commercial license terms. I represent that I have the right to grant this license for all contributed content. ## Description This PR addresses usability issues highlighted in #906 . **4.4 — Does Not Save Amount of Entries** The “entries per page” setting is not remembered and resets after every page refresh. **Fix** - Persist user preference for the number of entries displayed. - Ensure the setting is retained across sessions. Extracted from PR : #1283 ## How to test? --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2025-11-13 12:17:11 -06:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/pangolin#1056