diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-06-16 19:45:29 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-06-16 19:45:29 +0900 |
| commit | 80d1ee75433e1c0e166e343c8e9a98c47ace2db2 (patch) | |
| tree | 28c38988de51fae3c81b7c5d91cc17b1204d6e80 | |
| parent | 3.1.0 (diff) | |
| download | sharkey-80d1ee75433e1c0e166e343c8e9a98c47ace2db2.tar.gz sharkey-80d1ee75433e1c0e166e343c8e9a98c47ace2db2.tar.bz2 sharkey-80d1ee75433e1c0e166e343c8e9a98c47ace2db2.zip | |
Fix bug
| -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(); }; |