diff --git a/front/src/components/audio/Player.vue b/front/src/components/audio/Player.vue index b9c402240..84b076208 100644 --- a/front/src/components/audio/Player.vue +++ b/front/src/components/audio/Player.vue @@ -130,7 +130,7 @@ :title="labels.shuffle" v-if="!showVolume" class="two wide column control"> -
+
@@ -195,7 +195,8 @@ export default { updateProgress: 'player/updateProgress' }), shuffle () { - if (this.isShuffling) { + let disabled = this.queue.tracks.length === 0 + if (this.isShuffling || disabled) { return } let self = this