mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-16 05:08:04 +00:00
fix: 艺人页面专辑区不显示精选集 (#2046)
This commit is contained in:
parent
221ca63d3d
commit
1b7e33c222
1 changed files with 3 additions and 1 deletions
|
|
@ -241,7 +241,9 @@ export default {
|
||||||
computed: {
|
computed: {
|
||||||
...mapState(['player']),
|
...mapState(['player']),
|
||||||
albums() {
|
albums() {
|
||||||
return this.albumsData.filter(a => a.type === '专辑');
|
return this.albumsData.filter(
|
||||||
|
a => a.type === '专辑' || a.type === '精选集'
|
||||||
|
);
|
||||||
},
|
},
|
||||||
eps() {
|
eps() {
|
||||||
return this.albumsData.filter(a =>
|
return this.albumsData.filter(a =>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue