From 11b67f17568e8357d7aa664bc0aab3c5ba381949 Mon Sep 17 00:00:00 2001 From: Chris Fulljames Date: Sun, 13 Jul 2025 14:30:06 -0400 Subject: [PATCH] Fix song visibility --- src/littlesongplace/templates/song-macros.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/littlesongplace/templates/song-macros.html b/src/littlesongplace/templates/song-macros.html index eaa0377..414faec 100644 --- a/src/littlesongplace/templates/song-macros.html +++ b/src/littlesongplace/templates/song-macros.html @@ -117,7 +117,7 @@ {{ song_list_entry(song, current_user_playlists) | indent(8) }} {%- endfor %} {% for song in songs[1:] -%} - {{ song_list_entry(song, current_user_playlists, hidden=True) | indent(8) }} + {{ song_list_entry(song, current_user_playlists, hidden=show_first_only) | indent(8) }} {%- endfor %} -- 2.39.5