From 040c73ce59ea907b0fa636e6c36f94788918cc44 Mon Sep 17 00:00:00 2001 From: Claudio Ortolina Date: Thu, 3 Oct 2024 10:38:33 +0100 Subject: [PATCH] Remove column labels from record list --- lib/music_library_web/live/record_live/index.html.heex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/music_library_web/live/record_live/index.html.heex b/lib/music_library_web/live/record_live/index.html.heex index 436a8fd7..d95046eb 100644 --- a/lib/music_library_web/live/record_live/index.html.heex +++ b/lib/music_library_web/live/record_live/index.html.heex @@ -23,7 +23,7 @@ rows={@streams.records} row_click={fn {_id, record} -> JS.navigate(~p"/records/#{record}") end} > - <:col :let={{_id, record}} label="Cover"> + <:col :let={{_id, record}}> - <:col :let={{_id, record}} label="Record"> + <:col :let={{_id, record}}>

<%= Enum.map(record.artists, fn a -> a.name end) %>

<%= record.title %>

<%= record.release %>