diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-05-21 17:39:23 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-05-21 17:39:23 +0900 |
| commit | b44afc1876d297bf3bc3a307145bf69f0c852d18 (patch) | |
| tree | cf43b4704fcc536956723f4486f40bca6ec77cc4 /src/client/app/mobile/views/components | |
| parent | 11.18.0 (diff) | |
| download | sharkey-b44afc1876d297bf3bc3a307145bf69f0c852d18.tar.gz sharkey-b44afc1876d297bf3bc3a307145bf69f0c852d18.tar.bz2 sharkey-b44afc1876d297bf3bc3a307145bf69f0c852d18.zip | |
iOSで投稿フォームに自動フォーカスしない問題を修正
Diffstat (limited to 'src/client/app/mobile/views/components')
| -rw-r--r-- | src/client/app/mobile/views/components/post-form.vue | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/client/app/mobile/views/components/post-form.vue b/src/client/app/mobile/views/components/post-form.vue index 815122b28e..85246036a2 100644 --- a/src/client/app/mobile/views/components/post-form.vue +++ b/src/client/app/mobile/views/components/post-form.vue @@ -59,12 +59,11 @@ import { erase, unique } from '../../../../../prelude/array'; import { length } from 'stringz'; import { toASCII } from 'punycode'; import extractMentions from '../../../../../misc/extract-mentions'; -import XPostFormAttaches from '../../../common/views/components/post-form-attaches.vue'; export default Vue.extend({ i18n: i18n('mobile/views/components/post-form.vue'), components: { - XPostFormAttaches, + XPostFormAttaches: () => import('../../../common/views/components/post-form-attaches.vue').then(m => m.default), XPollEditor: () => import('../../../common/views/components/poll-editor.vue').then(m => m.default) }, |