-
Notifications
You must be signed in to change notification settings - Fork 690
UN-3770 [MISC] Make list pagination consistent across shared resource endpoints #2208
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
Merged
chandrasekharan-zipstack
merged 19 commits into
main
from
feat/list-pagination-consistency
Jul 31, 2026
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
45bf279
UN-3770 [FIX] Make list pagination consistent across shared resource …
chandrasekharan-zipstack c2ec0dc
UN-3770 [FIX] Address review: pk tie-breaker on client ordering, shar…
chandrasekharan-zipstack 45156b8
UN-3770 [MISC] Scope to backend + selectors; drop listing-page conver…
chandrasekharan-zipstack fd40c16
UN-3769 [FEAT] Sortable resource lists with co-owner ownership (#2200)
kirtimanmishrazipstack f4adbeb
Merge branch 'main' into feat/list-pagination-consistency
kirtimanmishrazipstack d28123a
UN-3770 [FIX] Address review: deterministic owner, keyboard row actio…
chandrasekharan-zipstack 8fc7916
UN-3770 [FIX] Use aria-disabled on row actions so the deprecated tool…
chandrasekharan-zipstack 3550f42
UN-3770 [FIX] Polish resource list table: sort affordance + layout
chandrasekharan-zipstack c1cc997
UN-3770 [FEAT] Search resource lists by owner too, not just name
chandrasekharan-zipstack 368a143
UN-3770 [FEAT] Update search placeholder to "Search by name or owner"
chandrasekharan-zipstack f992b3f
UN-3770 [FEAT] List all co-owners in the Owned By tooltip
chandrasekharan-zipstack 9fed831
UN-3770 [REFACTOR] Collapse owner_email into owner_emails
chandrasekharan-zipstack dfc9037
UN-3770 [REVERT] Drop the table column-width/layout tweaks for now
chandrasekharan-zipstack 3853476
UN-3770 [FEAT] ResourceTable: extraColumns + onRowClick (for lookups)…
chandrasekharan-zipstack 8d05a7b
chore: re-trigger pre-commit.ci (transient mergeable-check error)
chandrasekharan-zipstack 7c66465
UN-3770 [FIX] Address review: owner fallback+mask, scoped tiebreaker,…
chandrasekharan-zipstack 8d0f4bc
UN-3770 [FIX] Address Greptile: stable log pagination + drop stale li…
chandrasekharan-zipstack 2e47770
Merge branch 'main' into feat/list-pagination-consistency
chandrasekharan-zipstack d6562f4
UN-3770 [FIX] Route remaining paginated viewsets through deterministi…
chandrasekharan-zipstack File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
18 changes: 18 additions & 0 deletions
18
backend/adapter_processor_v2/migrations/0006_adapterinstance_adapter_org_modified_idx.py
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| # Generated by Django 4.2.30 on 2026-07-30 09:07 | ||
|
|
||
| from django.db import migrations, models | ||
|
|
||
|
|
||
| class Migration(migrations.Migration): | ||
| dependencies = [ | ||
| ("adapter_processor_v2", "0005_absorb_shared_users"), | ||
| ] | ||
|
|
||
| operations = [ | ||
| migrations.AddIndex( | ||
| model_name="adapterinstance", | ||
| index=models.Index( | ||
| fields=["organization", "-modified_at"], name="adapter_org_modified_idx" | ||
| ), | ||
| ), | ||
| ] |
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
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
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
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
18 changes: 18 additions & 0 deletions
18
backend/connector_v2/migrations/0008_connectorinstance_connector_org_modified_idx.py
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| # Generated by Django 4.2.30 on 2026-07-30 09:07 | ||
|
|
||
| from django.db import migrations, models | ||
|
|
||
|
|
||
| class Migration(migrations.Migration): | ||
| dependencies = [ | ||
| ("connector_v2", "0007_absorb_shared_users"), | ||
| ] | ||
|
|
||
| operations = [ | ||
| migrations.AddIndex( | ||
| model_name="connectorinstance", | ||
| index=models.Index( | ||
| fields=["organization", "-modified_at"], name="connector_org_modified_idx" | ||
| ), | ||
| ), | ||
| ] |
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
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
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
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
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
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
18 changes: 18 additions & 0 deletions
18
...ompt_studio/prompt_studio_core_v2/migrations/0010_customtool_custtool_org_modified_idx.py
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| # Generated by Django 4.2.30 on 2026-07-30 09:07 | ||
|
|
||
| from django.db import migrations, models | ||
|
|
||
|
|
||
| class Migration(migrations.Migration): | ||
| dependencies = [ | ||
| ("prompt_studio_core_v2", "0009_absorb_shared_users"), | ||
| ] | ||
|
|
||
| operations = [ | ||
| migrations.AddIndex( | ||
| model_name="customtool", | ||
| index=models.Index( | ||
| fields=["organization", "-modified_at"], name="custtool_org_modified_idx" | ||
| ), | ||
| ), | ||
| ] |
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.