diff --git a/.gitea/workflows/workflow.yaml b/.gitea/workflows/workflow.yaml index d139244..14b5b80 100644 --- a/.gitea/workflows/workflow.yaml +++ b/.gitea/workflows/workflow.yaml @@ -43,7 +43,7 @@ jobs: include: - workingdir: ./backend dockerfile: ./backend/Dockerfile - image: git.anatid.net/tabris/msuic-collection-backend + image: git.anatid.net/tabris/music-collection-backend - workingdir: ./frontend dockerfile: ./frontend/Dockerfile image: git.anatid.net/tabris/music-collection-frontend diff --git a/backend/src/album/album.service.ts b/backend/src/album/album.service.ts index 8231798..ae655e3 100644 --- a/backend/src/album/album.service.ts +++ b/backend/src/album/album.service.ts @@ -15,7 +15,8 @@ export class AlbumService { findAll(): Promise { return this.albumRepository.find({ order: { - artist: "ASC" + artist: "ASC", + title: "ASC" } }); }