Skip to content

Commit

Permalink
Fix codemirror height (#41432)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fedik committed Aug 23, 2023
1 parent c4ce360 commit 0c895c3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ public function display(string $name, string $content = '', array $attributes =
{
$col = $attributes['col'] ?? '';
$row = $attributes['row'] ?? '';
$width = $params['width'] ?? '';
$height = $params['height'] ?? '';
$width = $attributes['width'] ?? '';
$height = $attributes['height'] ?? '';
$id = $attributes['id'] ?? '';
$buttons = $params['buttons'] ?? true;
$asset = $params['asset'] ?? 0;
Expand Down

0 comments on commit 0c895c3

Please sign in to comment.