This commit is contained in:
Connor Johnstone
2026-03-19 15:07:30 -04:00
parent ee60076f70
commit c8e78606b1
10 changed files with 20 additions and 114 deletions

View File

@@ -82,7 +82,7 @@ pub fn album_page(props: &Props) -> Html {
<tbody>
{ for d.tracks.iter().map(|t| {
let duration = t.duration_ms
.map(|ms| fmt_duration(ms))
.map(&fmt_duration)
.unwrap_or_default();
let track_key = t.recording_mbid.clone();