From 67dcb4105a40f9ac62f44533d0b4c142c6935298 Mon Sep 17 00:00:00 2001 From: Christian Rath-Ulrich <christian@rath-ulrich.de> Date: Tue, 11 Jun 2024 19:15:12 +0200 Subject: [PATCH] [TASK] Use h2 for card title of element information modal MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Resolves: #104060 Related: #104046 Releases: main, 12.4 Change-Id: I2b7b8c8911cd3f5552a287a73942c11806f4b8bd Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/84634 Tested-by: core-ci <typo3@b13.com> Tested-by: Jasmina Ließmann <minapokhalo+typo3@gmail.com> Reviewed-by: Jasmina Ließmann <minapokhalo+typo3@gmail.com> --- .../Private/Templates/ContentElement/ElementInformation.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typo3/sysext/backend/Resources/Private/Templates/ContentElement/ElementInformation.html b/typo3/sysext/backend/Resources/Private/Templates/ContentElement/ElementInformation.html index ca7e8246cea0..d8d601e083d4 100644 --- a/typo3/sysext/backend/Resources/Private/Templates/ContentElement/ElementInformation.html +++ b/typo3/sysext/backend/Resources/Private/Templates/ContentElement/ElementInformation.html @@ -37,7 +37,7 @@ </div> <div class="card-header-body"> - <h1 class="card-title">{title -> f:format.crop(maxCharacters: maxTitleLength)}<f:if condition="{extraFields.uid.value}"><code>[{extraFields.uid.value}]</code></f:if></h1> + <h2 class="card-title">{title -> f:format.crop(maxCharacters: maxTitleLength)}<f:if condition="{extraFields.uid.value}"><code>[{extraFields.uid.value}]</code></f:if></h2> <f:if condition="{table}"> <span class="card-subtitle">{table}</span> </f:if> -- GitLab