Skip to content

Commit e7ff497

Browse files
Merge pull request #9 from Cyber-Duck/feature/patch-textarea-readonly
Patch textarea-readonly
2 parents 8af6afc + 5ada9ab commit e7ff497

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Column.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,8 +427,8 @@ private function markupField(FormBuilder $formBuilder)
427427

428428
case "text-readonly": /* Render text into the form and add a hidden field */
429429
case "number-readonly":
430-
$this->value = OutputHelper::output($this->value);
431430
case "textarea-readonly": /* Render text into the form and add a hidden field */
431+
$this->value = OutputHelper::output($this->value);
432432
if (!empty($this->value) || $this->value === 0) {
433433
$output .= '<div class="' . $this->classBundle . '">';
434434
$output .= '<div class="section-readonly">';

0 commit comments

Comments
 (0)