From ef6f647dc4bdd8a771a98cc27a2b344976ce36bd Mon Sep 17 00:00:00 2001 From: Nikita Hovratov <nikita.h@live.de> Date: Fri, 12 Jul 2024 15:49:14 +0200 Subject: [PATCH] [TASK] Change tt_content bodytext cols value to 50 The maximum value for "cols" is 50. Using higher values has no effect. See AbstractFormElement->maxInputWidth Resolves: #104381 Releases: main Change-Id: Ifd1a5931706f75ec438794b92fb3fe0dcc3c426e Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/85246 Tested-by: Oliver Bartsch <bo@cedev.de> Reviewed-by: Christian Kuhn <lolli@schwarzbu.ch> Tested-by: Christian Kuhn <lolli@schwarzbu.ch> Tested-by: core-ci <typo3@b13.com> Reviewed-by: Oliver Bartsch <bo@cedev.de> --- typo3/sysext/frontend/Configuration/TCA/tt_content.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typo3/sysext/frontend/Configuration/TCA/tt_content.php b/typo3/sysext/frontend/Configuration/TCA/tt_content.php index 31e55507b9fc..485fc65022f3 100644 --- a/typo3/sysext/frontend/Configuration/TCA/tt_content.php +++ b/typo3/sysext/frontend/Configuration/TCA/tt_content.php @@ -482,7 +482,7 @@ return [ 'label' => 'LLL:EXT:core/Resources/Private/Language/locallang_general.xlf:LGL.text', 'config' => [ 'type' => 'text', - 'cols' => 80, + 'cols' => 50, 'rows' => 15, 'softref' => 'typolink_tag,email[subst],url', 'search' => [ -- GitLab