aboutsummaryrefslogtreecommitdiffstats
path: root/src/expense/templates/macros.html
diff options
context:
space:
mode:
Diffstat (limited to 'src/expense/templates/macros.html')
-rw-r--r--src/expense/templates/macros.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/expense/templates/macros.html b/src/expense/templates/macros.html
index 2d83155..66529bc 100644
--- a/src/expense/templates/macros.html
+++ b/src/expense/templates/macros.html
@@ -23,7 +23,7 @@
<td><a href="{{ url_for("tracker.trans", id=row.id ) }}">Edit</a></td>
<td><time datetime="{{ row.date.strftime("%Y-%m-%d") }}">{{ row.date.strftime("%d/%m/%Y") }}<time></td>
<td><a href="{{ url_for("tracker.cat", id=row.category.id ) }}">{{ row.category.name }}</a></td>
- <td>{{ row.description }}</td>
+ <td style="white-space: pre-wrap;min-width: 30rem;">{{ row.description }}</td>
<td>{{ "%.2f"|format(row.amount) }}</td>
</tr>
{% endfor %}