diff --git a/front/src/components/audio/album/Widget.vue b/front/src/components/audio/album/Widget.vue
index ecc0a280e..609ef6ebc 100644
--- a/front/src/components/audio/album/Widget.vue
+++ b/front/src/components/audio/album/Widget.vue
@@ -2,10 +2,11 @@
+ No results matching your query.
@@ -43,7 +45,9 @@ import PlayButton from '@/components/audio/PlayButton'
export default {
props: {
- filters: {type: Object, required: true}
+ filters: {type: Object, required: true},
+ controls: {type: Boolean, default: true},
+ showCount: {type: Boolean, default: false},
},
components: {
PlayButton
@@ -52,6 +56,7 @@ export default {
return {
albums: [],
limit: 12,
+ count: 0,
isLoading: false,
errors: null,
previousPage: null,
@@ -76,6 +81,7 @@ export default {
self.nextPage = response.data.next
self.isLoading = false
self.albums = response.data.results
+ self.count = response.data.count
}, error => {
self.isLoading = false
self.errors = error.backendErrors
diff --git a/front/src/components/audio/artist/Widget.vue b/front/src/components/audio/artist/Widget.vue
index b78bcbf94..1b88feae7 100644
--- a/front/src/components/audio/artist/Widget.vue
+++ b/front/src/components/audio/artist/Widget.vue
@@ -142,8 +142,14 @@ export default {
right: 0;
bottom: 0;
}
+
.ui.three.cards .card {
- width: 25em;
+ width: 100%;
+}
+@include media(">tablet") {
+ .ui.three.cards .card {
+ width: 25em;
+ }
}
.with-overlay {
background-size: cover !important;
diff --git a/front/src/components/audio/track/Widget.vue b/front/src/components/audio/track/Widget.vue
index b8ad3c639..ecb967ab8 100644
--- a/front/src/components/audio/track/Widget.vue
+++ b/front/src/components/audio/track/Widget.vue
@@ -2,12 +2,13 @@
-
+

@@ -28,7 +29,9 @@
-