Fix player image not updating on follow target change
This commit is contained in:
parent
80fe8916f3
commit
3ca7a72703
@ -56,7 +56,7 @@ export default defineComponent({
|
|||||||
const store = useStore(),
|
const store = useStore(),
|
||||||
imagesEnabled = computed(() => store.state.components.playerList.showImages),
|
imagesEnabled = computed(() => store.state.components.playerList.showImages),
|
||||||
image = ref(defaultImage),
|
image = ref(defaultImage),
|
||||||
account = ref(props.target.name),
|
account = computed(() => props.target.name),
|
||||||
|
|
||||||
heading = computed(() => store.state.messages.followingHeading),
|
heading = computed(() => store.state.messages.followingHeading),
|
||||||
messageUnfollow = computed(() => store.state.messages.followingUnfollow),
|
messageUnfollow = computed(() => store.state.messages.followingUnfollow),
|
||||||
|
Loading…
Reference in New Issue
Block a user