#61168 closed defect (bug) (fixed)
Bulk select issue with with All select
Reported by: |
|
Owned by: |
|
---|---|---|---|
Milestone: | 6.6 | Priority: | normal |
Severity: | normal | Version: | 6.5 |
Component: | Quick/Bulk Edit | Keywords: | has-patch commit |
Focuses: | administration | Cc: |
Description
On selecting on user, all select checkbox is also getting selected in Users screen.
This seems like a consistency issue in UI.
I am attaching the video here
https://www.awesomescreenshot.com/video/27460465?key=a83233e85424e844e7b572d2802fc00b
Attachments (1)
Change History (15)
This ticket was mentioned in PR #6524 on WordPress/wordpress-develop by @swapnilghone9.
11 months ago
#2
- Keywords has-patch added
Trac ticket:
#4
@
10 months ago
- Component changed from Users to Quick/Bulk Edit
- Keywords needs-testing added
- Milestone changed from Awaiting Review to 6.6
- Version set to 6.5
I experience the same behavior in Users, Plugins, Comments, Media, Categories, and Updates list tables (but not Posts or Pages) with WordPress 6.5.3.
PR 6524 removes the iedit
class from the row selector, which [57745] added for Posts and Pages list tables. Is the class still necessary for those?
if ( $(this).closest('tbody').find('tr.iedit').length ) { var unchecked = $(this).closest('tbody').find('tr.iedit').find(':checkbox').filter(':visible:enabled').not(':checked'); } else { var unchecked = $(this).closest('tbody').find(':checkbox').filter(':visible:enabled').not(':checked'); }
#8
@
10 months ago
Test Report ✅
I tested the patch, and it is working as expected. ✅
Environment
WordPress: WordPress 6.6-alpha-20240508.130236
Theme: Twenty Twenty-Four 1.1
PHP: 8.3.0
Web Server: Nginx 1.20.2
Browser: Edge Version 125.0.2535.51 and Chrome Version 125.0.6422.142
OS: Windows 11
Actual Result
The patch is working fine; now, selecting a checkbox does not select all.
#11
@
10 months ago
- Owner set to audrasjb
- Status changed from new to assigned
Self assigning for commit.
@audrasjb commented on PR #6524:
10 months ago
#13
committed in https://core.trac.wordpress.org/changeset/58375
Visual