Merge branch '424-hide-empty-playlists' into 'develop'
Fix #424: Hide unplayable/emtpy playlists in "Browse playlist" pages Closes #424 See merge request funkwhale/funkwhale!541
This commit is contained in:
commit
d18b9933e0
|
@ -0,0 +1 @@
|
||||||
|
Hide unplayable/emtpy playlists in "Browse playlist" pages (#424)
|
|
@ -130,7 +130,8 @@ export default {
|
||||||
page: this.page,
|
page: this.page,
|
||||||
page_size: this.paginateBy,
|
page_size: this.paginateBy,
|
||||||
q: this.query,
|
q: this.query,
|
||||||
ordering: this.getOrderingAsString()
|
ordering: this.getOrderingAsString(),
|
||||||
|
playable: true
|
||||||
}
|
}
|
||||||
axios.get(url, { params: params }).then(response => {
|
axios.get(url, { params: params }).then(response => {
|
||||||
self.result = response.data
|
self.result = response.data
|
||||||
|
|
Loading…
Reference in New Issue