fix: adds delete button to broadcasted element

This commit is contained in:
2025-05-31 22:46:31 -05:00
parent c0f67a32ff
commit 785794790c

View File

@@ -18,6 +18,7 @@
<twig:StatusBadge color="green" status="Complete" />
{% endif %}
</td>
<td></td>
</tr>
</template>
</turbo-stream>
@@ -35,6 +36,7 @@
<div class="text-green-700 rounded-sm text-bold text-gray-950 text-center bg-green-600 h-5" style="width:{{ entity.progress }}%">{{ entity.progress }}%</div>
</div>
</td>
<td></td>
</template>
</turbo-stream>
{% else %}
@@ -59,6 +61,15 @@
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-800 dark:text-gray-50">
<twig:StatusBadge color="green" status="Complete" />
</td>
<td class="px-6 py-4 flex flex-row align-middle justify-center">
<button {{ stimulus_action('download_list', 'deleteDownload', 'click', {id: download.id}) }}>
<twig:ux:icon
name="ic:twotone-cancel" width="18px"
class="rounded-full align-middle text-red-600"
title="Remove {{ download.title }} from download list. This will not delete the file."
/>
</button>
</td>
</tr>
</template>
</turbo-stream>