Skip to content

Commit

Permalink
Fix codemirror height
Browse files Browse the repository at this point in the history
  • Loading branch information
Fedik committed Aug 22, 2023
1 parent 078f256 commit a304b5e
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 a304b5e

Please sign in to comment.