From b16a84fb90f62bacc2fc438fc25abbc6d86b6905 Mon Sep 17 00:00:00 2001 From: Georg Ringer <georg.ringer@gmail.com> Date: Wed, 3 May 2017 05:48:50 +0200 Subject: [PATCH] [BUGFIX] Use renderType selectSingle for field t3_tables of sys_action The field t3_tables of sys_action must be rendered as a single select field. This was also the behaviour before the regression introduced with #69822. Resolves: #81119 Releases: master, 8.7, 7.6 Change-Id: I2c885ea3494d7e2be22fad6df1b2a4791991551b Reviewed-on: https://review.typo3.org/52691 Tested-by: TYPO3com <no-reply@typo3.com> Reviewed-by: Thomas Hohn <thomas@hohn.dk> Reviewed-by: Henrik Elsner <helsner@dfau.de> Reviewed-by: Markus Klein <markus.klein@typo3.org> Tested-by: Markus Klein <markus.klein@typo3.org> Reviewed-by: Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by: Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by: Anja Leichsenring <aleichsenring@ab-softlab.de> Reviewed-by: Georg Ringer <georg.ringer@gmail.com> Tested-by: Georg Ringer <georg.ringer@gmail.com> --- typo3/sysext/sys_action/Configuration/TCA/sys_action.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typo3/sysext/sys_action/Configuration/TCA/sys_action.php b/typo3/sysext/sys_action/Configuration/TCA/sys_action.php index 50ffd716496b..b3f0a2a0f0a2 100644 --- a/typo3/sysext/sys_action/Configuration/TCA/sys_action.php +++ b/typo3/sysext/sys_action/Configuration/TCA/sys_action.php @@ -129,7 +129,7 @@ return [ 'label' => 'LLL:EXT:sys_action/Resources/Private/Language/locallang_tca.xlf:sys_action.t3_tables', 'config' => [ 'type' => 'select', - 'renderType' => 'selectMultipleSideBySide', + 'renderType' => 'selectSingle', 'special' => 'tables', 'items' => [ ['', ''] -- GitLab