Skip to main content

max / makenotwork

Fix bundle template: description is String not Option Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Author: Max J. <87768334+MaxJMath@users.noreply.github.com> · 2026-05-10 18:44 UTC
Commit: fb959f367000d501d3eb12920a7759819b37e6b3
Parent: 39b0539
1 file changed, +1 insertion, -1 deletion
@@ -151,7 +151,7 @@
151 151 {% for child in bundle_items %}
152 152 <tr class="bundle-row" data-child-id="{{ child.id }}" style="border-bottom: 1px solid var(--border);">
153 153 <td style="padding: 0.5rem 0.5rem 0.5rem 0;"><a href="/dashboard/item/{{ child.id }}">{{ child.title }}</a></td>
154 - <td style="padding: 0.5rem; font-size: 0.85rem; opacity: 0.8;">{% if let Some(desc) = child.description %}{{ desc }}{% endif %}</td>
154 + <td style="padding: 0.5rem; font-size: 0.85rem; opacity: 0.8;">{{ child.description }}</td>
155 155 <td style="padding: 0.5rem; font-size: 0.85rem;">
156 156 <a href="/dashboard/item/{{ child.id }}" style="font-size: 0.8rem;">Manage files</a>
157 157 </td>