diff --git a/core/modules/config/src/Form/ConfigSingleExportForm.php b/core/modules/config/src/Form/ConfigSingleExportForm.php index 22e0b4837f680f0e43dd92fb0a04cdbf906a66ce..dc46b45814d3d74be43605b5741b7da954735f10 100644 --- a/core/modules/config/src/Form/ConfigSingleExportForm.php +++ b/core/modules/config/src/Form/ConfigSingleExportForm.php @@ -136,7 +136,7 @@ public function buildForm(array $form, FormStateInterface $form_state, $config_t */ public function updateConfigurationType($form, FormStateInterface $form_state) { $form['config_name']['#options'] = $this->findConfiguration($form_state->getValue('config_type')); - unset($form['export']['#value']); + $form['export']['#value'] = NULL; return $form; }