Updating Drush first also worked for me, but at first I could not update Drush because of a "chicken-and-egg" dependency issue. The fix is to use the "--no-update" flag with a series of composer updates, like so...
composer require drush/drush:^12.4.3 --no-update
composer require 'drupal/core-recommended:^10.2.0' --update-with-dependencies --no-update
composer update
leewbutler β made their first commit to this issueβs fork.
Ou media image selection modal is showing similar issues These issues only began upgrading from Drupal 9 to Drupal 10.1. They were initially hard for use to reproduce but we have observed these patterns:
- Our issues seem only to occur on CHECKBOXES in the GRID view (the TABLE view checkboxes seem to still work fine)
- Our issues seems only to occur after FILTERING the GRID view (from AtoZ, etc).
- One issue observed is that after an editor selects an GRID view IMAGE's CHECKBOX, upon clicking INSERT SELECTED image button a different IMAGE (usually that image is only a few image away in the GRID view) is inserted. It's as if the GRID view had not successfully updated the checkbox indexes or IDs or what not upon FILTERING.
- The other issue we see is the same as this post's original one. After filtering in the GRID view some IMAGE will have no CHECKBOX for selection at all.
Just logging these observations here. I'll post more info when we get more clarity.
The attached patch corrects the 2 issues and requires a minimum of Drupal 8.9 to be applied.
leewbutler β created an issue.