Skip to content

Commit

Permalink
feat: as title in multifiles mode
Browse files Browse the repository at this point in the history
  • Loading branch information
theus77 committed Oct 25, 2024
1 parent 3de01bd commit 6e285a9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@
{% elseif dataField.rawData.files is defined and dataField.rawData.files is iterable %}
<ul class="nav nav-stacked">
{% for item in dataField.rawData.files %}
<li><a href="{{ ems_asset_path(item) }}" target="_blank">{{ item.filename }}</a></li>
<li><a href="{{ ems_asset_path(item) }}" target="_blank"{% if item._title|default %} title="{{ item._title }}"{% endif %}>{{ item.filename }}</a></li>
{% endfor %}
</ul>
{% endif %}
Expand Down

0 comments on commit 6e285a9

Please sign in to comment.