Skip to content

Commit

Permalink
[BUGFIX] Fix wrong condition in administration fluid template
Browse files Browse the repository at this point in the history
  • Loading branch information
derhansen committed Oct 11, 2024
1 parent 278eda6 commit fb51d42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Resources/Private/Templates/Administration/List.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ <h1>
<div class="input-group">
<f:form.textfield
name="endDate"
value="{f:if(condition: searchDemand.startDate, then: \"{f:format.date(format:'{settings.search.dateFormat}', date: '{searchDemand.endDate}')}\")}"
value="{f:if(condition: searchDemand.endDate, then: \"{f:format.date(format:'{settings.search.dateFormat}', date: '{searchDemand.endDate}')}\")}"
id="endDate"
additionalAttributes="{'autocomplete': 'off'}"
class="form-control t3js-datetimepicker t3js-clearable"
Expand Down

0 comments on commit fb51d42

Please sign in to comment.