Display artists in list

This commit is contained in:
Claudio Ortolina
2024-09-15 20:19:49 +01:00
parent ce1ecf06a7
commit 27f57cc68c
@@ -13,6 +13,9 @@
row_click={fn {_id, record} -> JS.navigate(~p"/records/#{record}") end}
>
<:col :let={{_id, record}} label="Type"><%= record.type %></:col>
<:col :let={{_id, record}} label="Artists">
<%= Enum.map(record.artists, fn a -> a.name end) %>
</:col>
<:col :let={{_id, record}} label="Image">
<img class="max-w-16" src={record.image} alt={record.title} />
</:col>