Commit 31dd624
authored
fix: correct pagination display when DB-to-Pydantic conversion fails (#3238)
Fixes #2851
When items fail Pydantic validation during admin list views, the pagination
'Showing X - Y of Z' display was incorrect. The server adjusted total_items (Z)
but the X-Y range was computed client-side using requested items, not actual
rendered count.
Changes:
- Add optional page_items field to PaginationMeta schema
- Update _adjust_pagination_for_conversion_failures() to set page_items
- Update 6 admin partial endpoints to pass rendered item count
- Update pagination_controls.html to use page_items when available
- Update tests to match new function signature
Example: 20 items requested, 2 fail conversion
- Before: 'Showing 1 - 20 of 98 items' (18 rows displayed)
- After: 'Showing 1 - 18 of 98 items' (18 rows displayed)
Builds on PR #2846 which introduced _adjust_pagination_for_conversion_failures()
Signed-off-by: SuciuDaniel <Daniel.Vasile.Suciu@ibm.com>1 parent 2e42613 commit 31dd624
File tree
4 files changed
+30
-16
lines changed- mcpgateway
- templates
- tests/unit/mcpgateway
4 files changed
+30
-16
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
697 | 697 | | |
698 | 698 | | |
699 | 699 | | |
700 | | - | |
| 700 | + | |
701 | 701 | | |
702 | 702 | | |
703 | 703 | | |
704 | 704 | | |
705 | 705 | | |
| 706 | + | |
706 | 707 | | |
707 | 708 | | |
708 | 709 | | |
709 | 710 | | |
| 711 | + | |
710 | 712 | | |
711 | 713 | | |
712 | 714 | | |
| |||
715 | 717 | | |
716 | 718 | | |
717 | 719 | | |
| 720 | + | |
| 721 | + | |
718 | 722 | | |
719 | 723 | | |
720 | 724 | | |
| |||
2386 | 2390 | | |
2387 | 2391 | | |
2388 | 2392 | | |
2389 | | - | |
| 2393 | + | |
2390 | 2394 | | |
2391 | 2395 | | |
2392 | 2396 | | |
| |||
8032 | 8036 | | |
8033 | 8037 | | |
8034 | 8038 | | |
8035 | | - | |
| 8039 | + | |
8036 | 8040 | | |
8037 | 8041 | | |
8038 | 8042 | | |
| |||
8606 | 8610 | | |
8607 | 8611 | | |
8608 | 8612 | | |
8609 | | - | |
| 8613 | + | |
8610 | 8614 | | |
8611 | 8615 | | |
8612 | 8616 | | |
| |||
8811 | 8815 | | |
8812 | 8816 | | |
8813 | 8817 | | |
8814 | | - | |
| 8818 | + | |
8815 | 8819 | | |
8816 | 8820 | | |
8817 | 8821 | | |
| |||
9391 | 9395 | | |
9392 | 9396 | | |
9393 | 9397 | | |
9394 | | - | |
| 9398 | + | |
9395 | 9399 | | |
9396 | 9400 | | |
9397 | 9401 | | |
| |||
10273 | 10277 | | |
10274 | 10278 | | |
10275 | 10279 | | |
10276 | | - | |
| 10280 | + | |
10277 | 10281 | | |
10278 | 10282 | | |
10279 | 10283 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
7292 | 7292 | | |
7293 | 7293 | | |
7294 | 7294 | | |
| 7295 | + | |
7295 | 7296 | | |
7296 | 7297 | | |
7297 | 7298 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
21 | 21 | | |
22 | 22 | | |
23 | 23 | | |
| 24 | + | |
24 | 25 | | |
25 | 26 | | |
26 | 27 | | |
| |||
185 | 186 | | |
186 | 187 | | |
187 | 188 | | |
188 | | - | |
| 189 | + | |
189 | 190 | | |
190 | 191 | | |
191 | 192 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
17472 | 17472 | | |
17473 | 17473 | | |
17474 | 17474 | | |
17475 | | - | |
| 17475 | + | |
17476 | 17476 | | |
17477 | 17477 | | |
17478 | 17478 | | |
17479 | 17479 | | |
| 17480 | + | |
17480 | 17481 | | |
17481 | 17482 | | |
17482 | 17483 | | |
17483 | | - | |
| 17484 | + | |
17484 | 17485 | | |
| 17486 | + | |
17485 | 17487 | | |
17486 | 17488 | | |
17487 | 17489 | | |
17488 | | - | |
| 17490 | + | |
17489 | 17491 | | |
17490 | 17492 | | |
17491 | 17493 | | |
17492 | 17494 | | |
| 17495 | + | |
17493 | 17496 | | |
17494 | 17497 | | |
17495 | 17498 | | |
17496 | | - | |
| 17499 | + | |
17497 | 17500 | | |
17498 | 17501 | | |
| 17502 | + | |
17499 | 17503 | | |
17500 | 17504 | | |
17501 | 17505 | | |
17502 | | - | |
| 17506 | + | |
17503 | 17507 | | |
| 17508 | + | |
17504 | 17509 | | |
17505 | 17510 | | |
17506 | 17511 | | |
17507 | | - | |
| 17512 | + | |
17508 | 17513 | | |
17509 | 17514 | | |
| 17515 | + | |
17510 | 17516 | | |
17511 | 17517 | | |
17512 | 17518 | | |
17513 | 17519 | | |
17514 | 17520 | | |
17515 | | - | |
| 17521 | + | |
17516 | 17522 | | |
17517 | 17523 | | |
17518 | 17524 | | |
| 17525 | + | |
17519 | 17526 | | |
17520 | 17527 | | |
17521 | 17528 | | |
17522 | 17529 | | |
17523 | | - | |
| 17530 | + | |
17524 | 17531 | | |
17525 | 17532 | | |
17526 | 17533 | | |
| 17534 | + | |
17527 | 17535 | | |
17528 | 17536 | | |
17529 | 17537 | | |
| |||
0 commit comments