fixed icon for favorites on search page (#1193)

This commit is contained in:
UnbreakCode 2022-06-23 15:32:53 +02:00 committed by GitHub
parent d4ffe69eaa
commit 9110a0e1c0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -542,14 +542,14 @@
let followAction = "follow"
let followActions = {
follow: {
icon: "./assets/feather/plus-circle.svg",
icon: "./assets/star.svg",
name: app.getLz('action.favorite'),
action: () => {
self.$root.setArtistFavorite(this.item.id, true)
}
},
unfollow: {
icon: "./assets/feather/x-circle.svg",
icon: "./assets/star.svg",
name: app.getLz('action.removeFavorite'),
action: () => {
self.$root.setArtistFavorite(this.item.id, false)