diff options
| author | Tosuke <tasukeprg@gmail.com> | 2018-06-16 19:46:51 +0900 |
|---|---|---|
| committer | Tosuke <tasukeprg@gmail.com> | 2018-06-16 19:46:51 +0900 |
| commit | 8297f8ccd05e1c58595532afcb74733084366e61 (patch) | |
| tree | 448ba4659a790e8e5182164a1b718626d313bb91 /src | |
| parent | improve web app manifest (diff) | |
| parent | 3.1.1 (diff) | |
| download | misskey-8297f8ccd05e1c58595532afcb74733084366e61.tar.gz misskey-8297f8ccd05e1c58595532afcb74733084366e61.tar.bz2 misskey-8297f8ccd05e1c58595532afcb74733084366e61.zip | |
Merge branch 'master' of github.com:syuilo/misskey
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/app/mobile/api/post.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/mobile/api/post.ts b/src/client/app/mobile/api/post.ts index 0634c52642..15b2f6b691 100644 --- a/src/client/app/mobile/api/post.ts +++ b/src/client/app/mobile/api/post.ts @@ -18,7 +18,7 @@ export default (os) => (opts) => { } }).$mount(); vm.$once('cancel', recover); - vm.$once('note', recover); + vm.$once('posted', recover); document.body.appendChild(vm.$el); (vm as any).focus(); }; |