Resolve #4321
This commit is contained in:
parent
40276d7f1a
commit
327ffd3498
2 changed files with 9 additions and 0 deletions
|
@ -36,6 +36,7 @@ common:
|
||||||
signout: "ログアウト"
|
signout: "ログアウト"
|
||||||
reload-to-apply-the-setting: "この設定を反映するにはページをリロードする必要があります。今すぐリロードしますか?"
|
reload-to-apply-the-setting: "この設定を反映するにはページをリロードする必要があります。今すぐリロードしますか?"
|
||||||
fetching-as-ap-object: "連合に照会中"
|
fetching-as-ap-object: "連合に照会中"
|
||||||
|
unfollow-confirm: "{name}さんをフォロー解除しますか?"
|
||||||
|
|
||||||
got-it: "わかった"
|
got-it: "わかった"
|
||||||
customization-tips:
|
customization-tips:
|
||||||
|
|
|
@ -92,6 +92,14 @@ export default Vue.extend({
|
||||||
|
|
||||||
try {
|
try {
|
||||||
if (this.isFollowing) {
|
if (this.isFollowing) {
|
||||||
|
const canceled = await this.$root.dialog({
|
||||||
|
type: 'warning',
|
||||||
|
text: this.$t('@.unfollow-confirm', { name: user.name || user.username }),
|
||||||
|
showCancelButton: true
|
||||||
|
});
|
||||||
|
|
||||||
|
if (canceled) return;
|
||||||
|
|
||||||
await this.$root.api('following/delete', {
|
await this.$root.api('following/delete', {
|
||||||
userId: this.user.id
|
userId: this.user.id
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue