Skip to content
Snippets Groups Projects
Commit 54f422bd authored by Christian Rath-Ulrich's avatar Christian Rath-Ulrich Committed by Benni Mack
Browse files

[BUGFIX] Move icon from System Information Dropdown, remove empty cell

Resolves: #104071
Releases: main, 12.4
Change-Id: I9e0958168cf9812e20fbd3d3be2ce8dab80a8bcb
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/84641


Tested-by: default avatarBenni Mack <benni@typo3.org>
Tested-by: default avatarcore-ci <typo3@b13.com>
Reviewed-by: default avatarBenni Mack <benni@typo3.org>
parent 27f0c4f8
Branches
Tags
No related merge requests found
......@@ -17,15 +17,16 @@
<caption class="hidden">System overview</caption>
<f:for each="{systemInformation}" as="info">
<tr>
<td data-type="icon">
<th data-type="title">
<f:if condition="{info.iconIdentifier}">
<f:then>
<core:icon identifier="{info.iconIdentifier}" size="small" alternativeMarkupIdentifier="inline" />
</f:then>
<f:else>{info.icon -> f:format.raw()}</f:else>
<f:else if="{info.icon}" >{info.icon -> f:format.raw()}</f:else>
<f:else>
<core:icon identifier="empty-empty" size="small" alternativeMarkupIdentifier="inline" />
</f:else>
</f:if>
</td>
<th data-type="title">
<f:translate key="{info.title}" default="{info.title}"/>
<f:if condition="{info.titleAddition}"> ({info.titleAddition -> f:format.htmlspecialchars()})</f:if>
</th>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment