- Issue created by @kkalaskar
- 🇮🇳India kkalaskar Pune
Created patch with following change
Existing :-
$action = $form_state->getValue('action'); if (empty($action)) { $form_state->setErrorByName('', $this->emptyActionMessage()); }
Updated :-
$action = $form_state->getValue('action'); if (strlen($action) === 0) { $form_state->setErrorByName('', $this->emptyActionMessage()); }
- Status changed to Needs review
over 1 year ago 6:22pm 10 November 2023 This doesn't seem to be a usability bug, just a bug. I am removing that tag.
- last update
over 1 year ago 29,681 pass, 2 fail - 🇺🇸United States smustgrave
Moving to 11.x development branch.
Thanks for reporting, we will also need a test case that shows this issue.
- Status changed to Needs work
over 1 year ago 6:53pm 10 November 2023 - Status changed to Closed: cannot reproduce
over 1 year ago 2:17pm 11 December 2023 - 🇳🇱Netherlands Lendude Amsterdam
The screenshot shows the Media Bulk update plugin and the actions appear to be from a Files bulk plugin in the other screenshot?
The actions in the screenshot do not appear to come from Drupal Core. The media Bulk update plugin uses string keys as you would expect here.
If I'm overlooking something please feel free to re-open this and add steps to reproduce this with just Drupal core.