From 55530ee0628ee4eef91f3bd8024dc6ee73edd648 Mon Sep 17 00:00:00 2001 From: Dirk Koritnik Date: Mon, 8 Mar 2021 13:45:31 +0100 Subject: [PATCH] Allow multiline in title and subtitle --- .../TCA/tx_events_domain_model_event.php | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Configuration/TCA/tx_events_domain_model_event.php b/Configuration/TCA/tx_events_domain_model_event.php index 720b526..999088f 100644 --- a/Configuration/TCA/tx_events_domain_model_event.php +++ b/Configuration/TCA/tx_events_domain_model_event.php @@ -170,8 +170,9 @@ return [ 'exclude' => true, 'label' => $l10nPath . ':tx_events_domain_model_event.title', 'config' => [ - 'type' => 'input', - 'size' => 30, + 'type' => 'text', + 'cols' => 40, + 'rows' => 2, 'eval' => 'trim' ] ], @@ -179,8 +180,9 @@ return [ 'exclude' => true, 'label' => $l10nPath . ':tx_events_domain_model_event.subtitle', 'config' => [ - 'type' => 'input', - 'size' => 30, + 'type' => 'text', + 'cols' => 40, + 'rows' => 2, 'eval' => 'trim' ] ], @@ -264,9 +266,8 @@ return [ 'exclude' => true, 'label' => $l10nPath . ':tx_events_domain_model_event.name', 'config' => [ - 'type' => 'text', - 'cols' => 40, - 'rows' => 2, + 'type' => 'input', + 'size' => 30, 'eval' => 'trim' ], ],