Issue #3462753: It's not possible to change and update Domain navigation block settings
1 unresolved thread
Closes #3462753
Merge request reports
Activity
Filter activity
86 86 */ 87 87 public function blockSubmit($form, FormStateInterface $form_state) { 88 88 // Process the block's submission handling if no errors occurred only. 89 if ($form_state->getErrors() !== []) { 89 if (empty($form_state->getErrors())) { This check can be removed since the method is called only if there are no errors - check here https://git.drupalcode.org/project/drupal/-/blob/10.3.x/core/lib/Drupal/Core/Block/BlockPluginTrait.php?ref_type=heads#L230
@davps Thanks. I removed the condition during the merge.
Please register or sign in to reply