[templates] Cleaning up how notes are displayed
All checks were successful
build & deploy / test (push) Successful in 1m43s
build & deploy / deploy (push) Successful in 22s

This commit is contained in:
2026-03-24 16:07:17 -04:00
parent a79cc4c217
commit 5b3e91fdc1
7 changed files with 40 additions and 10 deletions

View File

@ -801,7 +801,7 @@ class ScrobbleDetailView(DetailView):
FormClass = self.get_form_class()
log = self.object.log or {}
log["notes"] = self.object.logdata.notes_as_str()
log["notes"] = self.object.logdata.notes_as_str(separator="\n")
return FormClass(initial=log)