Skip to content

Commit

Permalink
[TASK] Resize t3editor fields to former height
Browse files Browse the repository at this point in the history
With https://review.typo3.org/c/Packages/TYPO3.CMS/+/63923/
the t3editor fields were fixed to respect the actual TCA
configuration for the fields. The leads to smaller input areas
at some places.

The TCA configuration of those fields is changed so that
the former size of the input area is preserved.

Resovles: #90845,
Releases: master, 9.5
Change-Id: I2ccb36ab991f697e2d740a4ceb2902d5da31b911
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/63936
Reviewed-by: Wouter Wolters <typo3@wouterwolters.nl>
Reviewed-by: Georg Ringer <georg.ringer@gmail.com>
Reviewed-by: Susanne Moog <look@susi.dev>
Tested-by: Georg Ringer <georg.ringer@gmail.com>
Tested-by: TYPO3com <noreply@typo3.com>
Tested-by: Susanne Moog <look@susi.dev>
  • Loading branch information
ervaude authored and susannemoog committed Mar 26, 2020
1 parent a8798df commit b41ead1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion typo3/sysext/core/Configuration/TCA/pages.php
Expand Up @@ -175,7 +175,7 @@
'config' => [
'type' => 'text',
'cols' => 40,
'rows' => 5,
'rows' => 15,
'enableTabulator' => true,
'fixedFont' => true,
],
Expand Down
4 changes: 2 additions & 2 deletions typo3/sysext/frontend/Configuration/TCA/sys_template.php
Expand Up @@ -113,7 +113,7 @@
'config' => [
'type' => 'text',
'cols' => 48,
'rows' => 10,
'rows' => 15,
'wrap' => 'off',
'enableTabulator' => true,
'fixedFont' => true,
Expand Down Expand Up @@ -177,7 +177,7 @@
'label' => 'LLL:EXT:frontend/Resources/Private/Language/locallang_tca.xlf:sys_template.config',
'config' => [
'type' => 'text',
'rows' => 10,
'rows' => 15,
'cols' => 48,
'wrap' => 'off',
'enableTabulator' => true,
Expand Down

0 comments on commit b41ead1

Please sign in to comment.