diff --git a/core/modules/content_moderation/src/Form/BundleModerationConfigurationForm.php b/core/modules/content_moderation/src/Form/BundleModerationConfigurationForm.php
index 10b3d6a..44a2873 100644
--- a/core/modules/content_moderation/src/Form/BundleModerationConfigurationForm.php
+++ b/core/modules/content_moderation/src/Form/BundleModerationConfigurationForm.php
@@ -139,4 +139,16 @@ public function save(array $form, FormStateInterface $form_state) {
     }
   }
 
+  /**
+   * Returns an array of supported actions for the current form.
+   */
+  protected function actions(array $form, FormStateInterface $form_state) {
+    $actions['submit'] = [
+      '#type' => 'submit',
+      '#value' => $this->t('Save'),
+      '#submit' => array('::submitForm', '::save'),
+    ];
+
+    return $actions;
+  }
 }
diff --git a/core/modules/content_moderation/src/Tests/ModerationStateNodeTypeTest.php b/core/modules/content_moderation/src/Tests/ModerationStateNodeTypeTest.php
index 39e1a2c..099b4dc 100644
--- a/core/modules/content_moderation/src/Tests/ModerationStateNodeTypeTest.php
+++ b/core/modules/content_moderation/src/Tests/ModerationStateNodeTypeTest.php
@@ -50,6 +50,7 @@ public function testEnablingOnExistingContent() {
     $this->assertLinkByHref('admin/structure/types/manage/not_moderated/moderation');
     $this->drupalGet('admin/structure/types/manage/not_moderated/moderation');
     $this->assertOptionSelected('edit-workflow', '');
+    $this->assertNoLink('Delete');
     $edit['workflow'] = 'editorial';
     $this->drupalPostForm(NULL, $edit, t('Save'));
 
