diff --git a/front/src/components/audio/Player.vue b/front/src/components/audio/Player.vue
index 72b7d7ef9..423c9d12f 100644
--- a/front/src/components/audio/Player.vue
+++ b/front/src/components/audio/Player.vue
@@ -7,14 +7,14 @@
-
- By
+ By
{{ album.artist.name }}
@@ -21,7 +21,7 @@
-
+
{{ track.position }}.
diff --git a/front/src/components/audio/artist/Card.vue b/front/src/components/audio/artist/Card.vue
index a9701c07e..8a02163fb 100644
--- a/front/src/components/audio/artist/Card.vue
+++ b/front/src/components/audio/artist/Card.vue
@@ -2,7 +2,7 @@
@@ -15,7 +15,7 @@
|
-
+
{{ album.title }}
{{ album.tracks.length }} tracks
diff --git a/front/src/components/audio/track/Table.vue b/front/src/components/audio/track/Table.vue
index e9beaa05a..ac903ad52 100644
--- a/front/src/components/audio/track/Table.vue
+++ b/front/src/components/audio/track/Table.vue
@@ -20,7 +20,7 @@
|
-
+
{{ track.position }}.
@@ -28,12 +28,12 @@
|
-
+
{{ track.artist.name }}
|
-
+
{{ track.album.title }}
|
diff --git a/front/src/components/library/Album.vue b/front/src/components/library/Album.vue
index cf3403400..dcfea5600 100644
--- a/front/src/components/library/Album.vue
+++ b/front/src/components/library/Album.vue
@@ -12,7 +12,7 @@
{{ album.title }}
diff --git a/front/src/components/library/Track.vue b/front/src/components/library/Track.vue
index 3c627c13c..36a76e822 100644
--- a/front/src/components/library/Track.vue
+++ b/front/src/components/library/Track.vue
@@ -12,10 +12,10 @@
{{ track.title }}
diff --git a/front/src/router/index.js b/front/src/router/index.js
index b3d90731f..cb8f9c1b5 100644
--- a/front/src/router/index.js
+++ b/front/src/router/index.js
@@ -51,9 +51,9 @@ export default new Router({
component: Library,
children: [
{ path: '', component: LibraryHome },
- { path: 'artist/:id', name: 'library.artist', component: LibraryArtist, props: true },
- { path: 'album/:id', name: 'library.album', component: LibraryAlbum, props: true },
- { path: 'track/:id', name: 'library.track', component: LibraryTrack, props: true },
+ { path: 'artists/:id', name: 'library.artists.detail', component: LibraryArtist, props: true },
+ { path: 'albums/:id', name: 'library.albums.detail', component: LibraryAlbum, props: true },
+ { path: 'tracks/:id', name: 'library.tracks.detail', component: LibraryTrack, props: true },
{
path: 'import/launch',
name: 'library.import.launch',