Skip to content
Snippets Groups Projects
Commit 309eb845 authored by Eliot Berriot's avatar Eliot Berriot
Browse files

Merge branch 'fix-shuffle-loading' into 'develop'

fix shuffle loading too big

See merge request funkwhale/funkwhale!322
parents 2e9fd9c3 f3f4f709
No related branches found
No related tags found
No related merge requests found
...@@ -130,7 +130,7 @@ ...@@ -130,7 +130,7 @@
:title="labels.shuffle" :title="labels.shuffle"
v-if="!showVolume" v-if="!showVolume"
class="two wide column control"> class="two wide column control">
<div v-if="isShuffling" class="ui inline shuffling inverted small active loader"></div> <div v-if="isShuffling" class="ui inline shuffling inverted tiny active loader"></div>
<i v-else @click="shuffle()" :class="['ui', 'random', 'secondary', {'disabled': queue.tracks.length === 0}, 'icon']" ></i> <i v-else @click="shuffle()" :class="['ui', 'random', 'secondary', {'disabled': queue.tracks.length === 0}, 'icon']" ></i>
</div> </div>
<div class="one wide column" v-if="!showVolume"></div> <div class="one wide column" v-if="!showVolume"></div>
...@@ -195,7 +195,8 @@ export default { ...@@ -195,7 +195,8 @@ export default {
updateProgress: 'player/updateProgress' updateProgress: 'player/updateProgress'
}), }),
shuffle () { shuffle () {
if (this.isShuffling) { let disabled = this.queue.tracks.length === 0
if (this.isShuffling || disabled) {
return return
} }
let self = this let self = this
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment