Skip to content

Commit

Permalink
remove required height and width for embedded content
Browse files Browse the repository at this point in the history
  • Loading branch information
yeniatencio committed Jan 7, 2025
1 parent 571bb5e commit 730ab5c
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 730ab5c

Please sign in to comment.