From b6a40610976d4f50579e95805bf7c665949eeda3 Mon Sep 17 00:00:00 2001 From: Xeltica <7106976+Xeltica@users.noreply.github.com> Date: Tue, 7 Jul 2020 15:50:47 +0900 Subject: [PATCH] =?UTF-8?q?fix=20=E9=9D=9E=E3=83=AD=E3=82=B0=E3=82=A4?= =?UTF-8?q?=E3=83=B3=E6=99=82=E3=81=AB=20n=20=E3=81=BE=E3=81=9F=E3=81=AF?= =?UTF-8?q?=20p=20=E3=82=AD=E3=83=BC=E6=8A=BC=E4=B8=8B=E3=81=A7=E6=8A=95?= =?UTF-8?q?=E7=A8=BF=E3=83=95=E3=82=A9=E3=83=BC=E3=83=A0=E3=81=8C=E5=87=BA?= =?UTF-8?q?=E3=82=8B=20(#6508)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix #5851 * post-formのスポーンを弾く場所を変更 --- src/client/init.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/client/init.ts b/src/client/init.ts index 2c5a45984..a5c310dd6 100644 --- a/src/client/init.ts +++ b/src/client/init.ts @@ -195,6 +195,7 @@ os.init(async () => { return p; }, post(opts, cb) { + if (!this.$store.getters.isSignedIn) return; const vm = this.new(PostFormDialog, opts); if (cb) vm.$once('closed', cb); (vm as any).focus();