Added missing evaluation flags, for save not encoded json in the database

This commit is contained in:
Sven Baumann
2022-12-10 11:18:57 +01:00
parent 9814ed31ad
commit 44546e4952
3 changed files with 9 additions and 3 deletions

View File

@@ -428,6 +428,8 @@ $GLOBALS['TL_DCA']['tl_leaflet_map'] = [
'inputType' => 'textarea',
'eval' => [
'tl_class' => 'clr lng',
'preserveTags' => true,
'decodeEntities' => true,
'allowHtml' => true,
'style' => 'min-height: 40px;',
'rte' => 'ace|json',

View File

@@ -340,6 +340,8 @@ $GLOBALS['TL_DCA']['tl_leaflet_marker'] = [
'inputType' => 'textarea',
'eval' => [
'tl_class' => 'clr lng',
'preserveTags' => true,
'decodeEntities' => true,
'allowHtml' => true,
'style' => 'min-height: 40px;',
'rte' => 'ace|json',

View File

@@ -380,6 +380,8 @@ $GLOBALS['TL_DCA']['tl_leaflet_vector'] = [
'inputType' => 'textarea',
'eval' => [
'tl_class' => 'clr lng',
'preserveTags' => true,
'decodeEntities' => true,
'allowHtml' => true,
'style' => 'min-height: 40px;',
'rte' => 'ace|json',