Skip to content

Commit 6245bd0

Browse files
committed
Add "markdown" type fields to the converter command
1 parent faf8d23 commit 6245bd0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/TextareaConverter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ private function getTextareaFields($blueprint): array
110110
$fields = $blueprint->fields();
111111

112112
foreach ($fields as $fieldName => $field) {
113-
if ($field['type'] === 'textarea') {
113+
if ($field['type'] === 'textarea' || $field['type'] === 'markdown') {
114114
$textareaFields[] = $fieldName;
115115
}
116116
}

0 commit comments

Comments
 (0)