#13472 closed (fixed)
initial "x of y selected" contains wrong total item count
Reported by: | Carl Meyer | Owned by: | nobody |
---|---|---|---|
Component: | contrib.admin | Version: | dev |
Severity: | Keywords: | javascript | |
Cc: | Triage Stage: | Accepted | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
The admin displays "x of y selected" on the changelist. If you have, say, 4000 items, the initial display says "0 of 100" selected; the number on a single page, rather than the actual total.
If you check a box next to some item, it switches to "1 of 4000"; uncheck, it goes to "0 of 4000". So the JS always sets the correct value, only the initial value is wrong.
Marking 1.2 as its a regression, albeit minor. Patch should be simple, I'll look at it.
Change History (3)
comment:1 by , 15 years ago
Triage Stage: | Unreviewed → Accepted |
---|
comment:2 by , 15 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
(In [13099]) Fixed #13472 - Fixed minor regression in admin actions template introduced in r12968. Thanks for the report, Carl Meyer.