diff --git a/core/themes/claro/claro.theme b/core/themes/claro/claro.theme index 22444e1f006..e46b4606370 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'] = '
' . str_replace($left_class, 'views-group-box--operator', $form['options']['operator']['#prefix']); - $form['options']['value']['#suffix'] = $form['options']['value']['#suffix'] . '
'; + $form['options']['value']['#suffix'] = ($form['options']['value']['#suffix'] ?? '') . ''; } } }