From 549d1acb149676f84a04edda384c26b9b2247308 Mon Sep 17 00:00:00 2001 From: tiggr <noreply@example.com> Date: Fri, 23 Feb 2024 17:29:58 +0000 Subject: [PATCH] [TASK] Fix example of adding custom table to create database record reactions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fixes error introduced by https://review.typo3.org/c/Packages/TYPO3.CMS/+/83080 Releases: main, 12.4 Resolves: #103191 Related: #103181 Change-Id: I4636c5c0f39beff6824ec7fb967993087c2fdbc5 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/83097 Tested-by: core-ci <typo3@b13.com> Tested-by: Stefan Bürk <stefan@buerk.tech> Reviewed-by: Stefan Bürk <stefan@buerk.tech> --- .../Documentation/Reactions/CreateDatabaseRecord/Index.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/typo3/sysext/reactions/Documentation/Reactions/CreateDatabaseRecord/Index.rst b/typo3/sysext/reactions/Documentation/Reactions/CreateDatabaseRecord/Index.rst index 43089b9ccb53..94cc35983def 100644 --- a/typo3/sysext/reactions/Documentation/Reactions/CreateDatabaseRecord/Index.rst +++ b/typo3/sysext/reactions/Documentation/Reactions/CreateDatabaseRecord/Index.rst @@ -157,8 +157,8 @@ available in the reaction's table selection, add the table in a corresponding 'sys_reaction', 'table_name', [ - 'label' => LLL:EXT:myext/Resources/Private/Language/locallang.xlf:tx_myextension_domain_model_mytable', - 'value' => tx_myextension_domain_model_mytable', + 'label' => 'LLL:EXT:myext/Resources/Private/Language/locallang.xlf:tx_myextension_domain_model_mytable', + 'value' => 'tx_myextension_domain_model_mytable', 'icon' => 'myextension-tx_myextension_domain_model_mytable-icon', ] ); -- GitLab