fix: add linebreaks to recurring transactions table

This commit is contained in:
Herculino Trotta
2024-11-30 03:29:37 -03:00
parent 0d3c0b904e
commit 08da805642
@@ -101,7 +101,7 @@
<div class="{% if recurring_transaction.type == 'EX' %}tw-text-red-400{% else %}tw-text-green-400{% endif %}"> <div class="{% if recurring_transaction.type == 'EX' %}tw-text-red-400{% else %}tw-text-green-400{% endif %}">
{{ recurring_transaction.description }} {{ recurring_transaction.description }}
</div> </div>
<div class="tw-text-sm tw-text-gray-400">{{ recurring_transaction.notes }}</div> <div class="tw-text-sm tw-text-gray-400">{{ recurring_transaction.notes|linebreaks }}</div>
</td> </td>
</tr> </tr>
{% endfor %} {% endfor %}