Removing check on songs, will do a different way
All checks were successful
Music Collection CI Workflow / test (./backend) (push) Successful in 22s
Music Collection CI Workflow / test (./frontend) (push) Successful in 19s
Music Collection CI Workflow / build-and-push-images (./backend/Dockerfile, git.anatid.net/tabris/msuic-collection-backend, ./backend) (push) Successful in 50s
Music Collection CI Workflow / build-and-push-images (./frontend/Dockerfile, git.anatid.net/tabris/music-collection-frontend, ./frontend) (push) Successful in 1m11s
Music Collection CI Workflow / deploy (push) Successful in 23s
All checks were successful
Music Collection CI Workflow / test (./backend) (push) Successful in 22s
Music Collection CI Workflow / test (./frontend) (push) Successful in 19s
Music Collection CI Workflow / build-and-push-images (./backend/Dockerfile, git.anatid.net/tabris/msuic-collection-backend, ./backend) (push) Successful in 50s
Music Collection CI Workflow / build-and-push-images (./frontend/Dockerfile, git.anatid.net/tabris/music-collection-frontend, ./frontend) (push) Successful in 1m11s
Music Collection CI Workflow / deploy (push) Successful in 23s
This commit is contained in:
parent
72f3b9b111
commit
1e4f2875aa
@ -29,11 +29,9 @@ export default function Page() {
|
||||
<em>{album.title}</em> by {album.artist} ({album.genre})
|
||||
</div>
|
||||
<ul>
|
||||
if (album.songs) {
|
||||
album.songs.map((song: Song) => (
|
||||
<li key={song.id}>{song.title} ({TimeUtils.fancyTimeFormat(song.duration)})</li>
|
||||
))
|
||||
}
|
||||
{album.songs.map((song: Song) => (
|
||||
<li key={song.id}>{song.title} ({TimeUtils.fancyTimeFormat(song.duration)})</li>
|
||||
))}
|
||||
</ul>
|
||||
</div>
|
||||
);
|
||||
|
Loading…
x
Reference in New Issue
Block a user