Skip to content

Commit

Permalink
Fix bug in step 2 lyric placeholder text
Browse files Browse the repository at this point in the history
  • Loading branch information
ashermorgan committed Jul 19, 2024
1 parent 829cdee commit f875177
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion songs2slides/templates/create-step-2.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ <h1>Step 2: Review Lyrics</h1>

<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>
Expand Down

0 comments on commit f875177

Please sign in to comment.