mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Fix display bug for attachments
This commit is contained in:
parent
5545d1c1ba
commit
1cfe4f40ba
@ -161,7 +161,7 @@
|
|||||||
<td>
|
<td>
|
||||||
<i class="fa {{ att.mime|mimeIcon }}"></i>
|
<i class="fa {{ att.mime|mimeIcon }}"></i>
|
||||||
<a href="{{ route('attachments.download', att.id) }}" title="{{ att.filename }}">
|
<a href="{{ route('attachments.download', att.id) }}" title="{{ att.filename }}">
|
||||||
{% if strlen(att.title) > 0 %}
|
{% if att.title|length > 0 %}
|
||||||
{{ att.title }}
|
{{ att.title }}
|
||||||
{% else %}
|
{% else %}
|
||||||
{{ att.filename }}
|
{{ att.filename }}
|
||||||
|
Loading…
Reference in New Issue
Block a user