fixed icon for favorites on search page (#1193)
This commit is contained in:
parent
d4ffe69eaa
commit
9110a0e1c0
1 changed files with 2 additions and 2 deletions
|
@ -542,14 +542,14 @@
|
||||||
let followAction = "follow"
|
let followAction = "follow"
|
||||||
let followActions = {
|
let followActions = {
|
||||||
follow: {
|
follow: {
|
||||||
icon: "./assets/feather/plus-circle.svg",
|
icon: "./assets/star.svg",
|
||||||
name: app.getLz('action.favorite'),
|
name: app.getLz('action.favorite'),
|
||||||
action: () => {
|
action: () => {
|
||||||
self.$root.setArtistFavorite(this.item.id, true)
|
self.$root.setArtistFavorite(this.item.id, true)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
unfollow: {
|
unfollow: {
|
||||||
icon: "./assets/feather/x-circle.svg",
|
icon: "./assets/star.svg",
|
||||||
name: app.getLz('action.removeFavorite'),
|
name: app.getLz('action.removeFavorite'),
|
||||||
action: () => {
|
action: () => {
|
||||||
self.$root.setArtistFavorite(this.item.id, false)
|
self.$root.setArtistFavorite(this.item.id, false)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue