Fixed friends and bookmarks lists failing to update character status

This commit is contained in:
Mr. Stallion 2020-10-04 16:49:13 -05:00
parent d9e1e83d74
commit 317d7970be
1 changed files with 5 additions and 1 deletions

View File

@ -3,7 +3,7 @@
<script lang="ts">
import { Component, Hook, Prop } from '@f-list/vue-ts';
import { Component, Hook, Prop, Watch } from '@f-list/vue-ts';
import Vue from 'vue';
import {Channel, Character} from '../fchat';
import { Score, Scoring } from '../learn/matcher';
@ -108,6 +108,10 @@ export default class UserView extends Vue {
this.update();
}
@Watch('character.status')
onStatusUpdate(): void {
this.update();
}
update(): void {
this.rankIcon = null;