Skip to content
Snippets Groups Projects
Commit 7052233e authored by Benni Mack's avatar Benni Mack Committed by Christian Kuhn
Browse files

[TASK] Add descriptions to dropdowns in Install Tool - All Configuration

Resolves: #82418
Releases: master
Change-Id: Ic5a59c485df3ce9aaaad0bd51206c0d53f445690
Reviewed-on: https://review.typo3.org/54072


Reviewed-by: default avatarJoerg Kummer <typo3@enobe.de>
Tested-by: default avatarJoerg Kummer <typo3@enobe.de>
Tested-by: default avatarTYPO3com <no-reply@typo3.com>
Reviewed-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
Tested-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
parent ae18caad
Branches
Tags
No related merge requests found
......@@ -49,8 +49,8 @@
<select
data-path="{sectionName}/{item.key}"
class="t3-install-form-input-text form-control t3js-localConfiguration-pathValue">
<f:for each="{item.allowedValues}" as="value">
<option value="{item.value}" {f:if(condition:'{item.value} == {value}', then: 'selected="selected"')}>{value}</option>
<f:for each="{item.allowedValues}" key="optionKey" as="optionLabel">
<option value="{optionKey}" {f:if(condition:'{item.value} == {optionKey}', then: 'selected="selected"')}>{optionLabel} ({optionKey})</option>
</f:for>
</select>
</div>
......
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