diff --git a/modules/tide_ckeditor/src/Plugin/EmbeddedContent/TideIframe.php b/modules/tide_ckeditor/src/Plugin/EmbeddedContent/TideIframe.php index 7ba339b64..f888c654f 100644 --- a/modules/tide_ckeditor/src/Plugin/EmbeddedContent/TideIframe.php +++ b/modules/tide_ckeditor/src/Plugin/EmbeddedContent/TideIframe.php @@ -66,13 +66,11 @@ public function buildConfigurationForm(array $form, FormStateInterface $form_sta '#type' => 'textfield', '#title' => $this->t('Width'), '#default_value' => $this->configuration['width'], - '#required' => TRUE, ]; $form['height'] = [ '#type' => 'textfield', '#title' => $this->t('Height'), '#default_value' => $this->configuration['height'], - '#required' => TRUE, ]; return $form; }