Skip to content

Commit

Permalink
Fixing typo
Browse files Browse the repository at this point in the history
  • Loading branch information
hirenpatel committed Sep 28, 2018
1 parent f3ee678 commit c174693
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/extensions/MarkdownDataObjectExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ public function updateCMSFields(FieldList $fields)
$description = $field->description;
$attributes = $field->attributes;

$row = 30;
$rows = 30;

if (array_key_exists('rows', $attributes)) {
$row = $attributes['rows'];
$rows = $attributes['rows'];
}

$markdownField = MarkdownEditorField::create($name, $title)
Expand Down

0 comments on commit c174693

Please sign in to comment.