diff --git a/core/themes/claro/claro.theme b/core/themes/claro/claro.theme index 22444e1f0064e6d49376748cb9bdfe21cdd3579a..e46b460637070e2c06a21b7fc703748e9f3a13f6 100644 --- a/core/themes/claro/claro.theme +++ b/core/themes/claro/claro.theme @@ -1705,7 +1705,7 @@ function claro_form_views_ui_config_item_form_alter(array &$form, FormStateInter foreach (['views-left-30', 'views-left-40'] as $left_class) { if (str_contains($form['options']['operator']['#prefix'], $left_class)) { $form['options']['operator']['#prefix'] = '<div class="views-config-group-region">' . str_replace($left_class, 'views-group-box--operator', $form['options']['operator']['#prefix']); - $form['options']['value']['#suffix'] = $form['options']['value']['#suffix'] . '</div>'; + $form['options']['value']['#suffix'] = ($form['options']['value']['#suffix'] ?? '') . '</div>'; } } }