Commit c419d8bf authored by Carlos Busto Capeáns's avatar Carlos Busto Capeáns Committed by Carlos Busto Capeáns
Browse files

Issue #3308552: Error when trying to add/edit a section

parent 9d15b4e6
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -132,7 +132,7 @@ function layout_custom_section_classes_form_layout_builder_configure_section_alt
        '#title' => t('Choose classes'),
        '#description' => t('Check classes to apply them.'),
        '#options' => $classList,
        '#default_value' => $classListValue ?? '',
        '#default_value' => $classListValue ?? [],
      ];
    }

@@ -198,7 +198,7 @@ function layout_custom_section_classes_form_layout_builder_configure_section_alt
            '#title' => t('Choose classes'),
            '#description' => t('Check classes to apply them.'),
            '#options' => $classList,
            '#default_value' => $config['regions'][$id]['region_class_choose'] ?? '',
            '#default_value' => $config['regions'][$id]['region_class_choose'] ?? [],
          ];
        }