songs2slides

A tool that automatically finds song lyrics and creates lyric slideshows
git clone https://git.ashermorgan.net/songs2slides/
Log | Files | Refs | README

commit f875177723af5b038dce8ac0991e5af381990ed1
parent 829cdeeb2e3f01cb5a4263ea27959a823c71e5b6
Author: Asher Morgan <59518073+ashermorgan@users.noreply.github.com>
Date:   Thu, 18 Jul 2024 18:17:27 -0700

Fix bug in step 2 lyric placeholder text

Diffstat:
Msongs2slides/templates/create-step-2.html | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/songs2slides/templates/create-step-2.html b/songs2slides/templates/create-step-2.html @@ -53,7 +53,7 @@ <textarea name="lyrics-{{ loop.index }}" placeholder="{{ 'Lyrics not found, please enter them here manually.\n\n' - if not songs.lyrics else '' }}{{ format_hint }}" + if not song.lyrics else '' }}{{ format_hint }}" aria-label="{{ song.title }} Lyrics" >{{ song.lyrics or '' }}</textarea> </details>