Feature: #79341 - TCA richtext configuration in config section
See forge#79341
Description
A new config setting enable
has been introduced. It enables richtext editing on the text field and replaces the old setting default
.
Impact
Setting enable
will result in the text field being rendered with a richtext editor. Config example:
'columns' => [
'content' => [
'config' => [
'type' => 'text',
'enableRichtext' => true,
],
],
];
Copied!