Skip to content

Commit

Permalink
[BUGFIX] Add missing class to form labels in dashboard
Browse files Browse the repository at this point in the history
Resolves: #103638
Releases: main, 12.4
Change-Id: Ib5880f2ea62c8d9b54b7db6f6488fc6d5a479827
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/83836
Tested-by: Benni Mack <[email protected]>
Tested-by: core-ci <[email protected]>
Tested-by: Oliver Bartsch <[email protected]>
Reviewed-by: Oliver Bartsch <[email protected]>
Reviewed-by: Benni Mack <[email protected]>
  • Loading branch information
benjaminkott authored and o-ba committed Apr 16, 2024
1 parent 5bd95fb commit d36204c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ <h3><f:translate key="LLL:EXT:dashboard/Resources/Private/Language/locallang.xlf
<template id="dashboardModal-add">
<form action="{addDashboardUri}" id="formAddDashboard" class="dashboardModal-form" target="list_frame" method="post">
<div class="form-group">
<label for="dashboardModalAdd-title"><f:translate key="LLL:EXT:dashboard/Resources/Private/Language/locallang.xlf:dashboard.title" /></label>
<label class="form-label" for="dashboardModalAdd-title"><f:translate key="LLL:EXT:dashboard/Resources/Private/Language/locallang.xlf:dashboard.title" /></label>
<input class="form-control" id="dashboardModalAdd-title" type="text" name="dashboard-title" required="required">
</div>

Expand Down Expand Up @@ -200,7 +200,7 @@ <h3><f:translate key="LLL:EXT:dashboard/Resources/Private/Language/locallang.xlf
<form action="{configureDashboardUri}" id="configureDashboardForm" class="dashboardModal-form" target="list_frame" method="post">
<input type="hidden" name="currentDashboard" value="{currentDashboard.identifier}">
<div class="form-group">
<label for="dashboardModalConfigure-title"><f:translate key="LLL:EXT:dashboard/Resources/Private/Language/locallang.xlf:dashboard.title" /></label>
<label class="form-label" for="dashboardModalConfigure-title"><f:translate key="LLL:EXT:dashboard/Resources/Private/Language/locallang.xlf:dashboard.title" /></label>
<input class="form-control" id="dashboardModalConfigure-title" type="text" name="dashboard[title]" value="{currentDashboard.title}" required="required">
</div>
</form>
Expand Down

0 comments on commit d36204c

Please sign in to comment.