diff --git a/src/EventSubscriber/LayoutBuilderIdsConfigureBlock.php b/src/EventSubscriber/LayoutBuilderIdsConfigureBlock.php index 6ebb7012e2bed63f0bcf07c148a71616396a5292..0d5f2a8bda13c78834403f15081085a0a6922870 100644 --- a/src/EventSubscriber/LayoutBuilderIdsConfigureBlock.php +++ b/src/EventSubscriber/LayoutBuilderIdsConfigureBlock.php @@ -36,7 +36,7 @@ class LayoutBuilderIdsConfigureBlock implements EventSubscriberInterface { $form['settings']['layout_builder_id'] = [ '#type' => 'textfield', '#title' => 'Block ID', - '#weight' => 0, + '#weight' => 99, '#default_value' => $layout_builder_id ?: NULL, '#description' => t('Enter an ID for the block. IDs can contain letters, numbers, underscore, hyphen and period characters, and should start with a letter.'), ]; diff --git a/src/EventSubscriber/LayoutBuilderIdsConfigureSection.php b/src/EventSubscriber/LayoutBuilderIdsConfigureSection.php index cf2cdec45f4ba6d35eacf370f5fdcab805317845..7c813e49d902540fb79f486012ddfe4d4c7322a2 100644 --- a/src/EventSubscriber/LayoutBuilderIdsConfigureSection.php +++ b/src/EventSubscriber/LayoutBuilderIdsConfigureSection.php @@ -37,7 +37,7 @@ class LayoutBuilderIdsConfigureSection implements EventSubscriberInterface { $form['layout_settings']['layout_builder_id'] = [ '#type' => 'textfield', '#title' => 'Section ID', - '#weight' => 0, + '#weight' => 99, '#default_value' => $config['layout_builder_id'] ?: NULL, '#description' => t('Enter an ID for the section. IDs can contain letters, numbers, underscore, hyphen and period characters, and should start with a letter.'), ];