forked from FoundKeyGang/FoundKey
Fix bug
This commit is contained in:
parent
194a958d40
commit
f379a721f1
1 changed files with 2 additions and 2 deletions
|
@ -92,9 +92,9 @@ export default Vue.extend({
|
||||||
|
|
||||||
try {
|
try {
|
||||||
if (this.isFollowing) {
|
if (this.isFollowing) {
|
||||||
const canceled = await this.$root.dialog({
|
const { canceled } = await this.$root.dialog({
|
||||||
type: 'warning',
|
type: 'warning',
|
||||||
text: this.$t('@.unfollow-confirm', { name: user.name || user.username }),
|
text: this.$t('@.unfollow-confirm', { name: this.user.name || this.user.username }),
|
||||||
showCancelButton: true
|
showCancelButton: true
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue