diff options
| author | MeiMei <30769358+mei23@users.noreply.github.com> | 2019-07-24 02:15:40 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2019-07-24 02:15:40 +0900 |
| commit | 5d847f9808132490c764b0c3116734ef6572896e (patch) | |
| tree | 8135bf1651ddd171b040143463da451d460cac22 /src/client/app/common | |
| parent | Fix #5210 (diff) | |
| download | misskey-5d847f9808132490c764b0c3116734ef6572896e.tar.gz misskey-5d847f9808132490c764b0c3116734ef6572896e.tar.bz2 misskey-5d847f9808132490c764b0c3116734ef6572896e.zip | |
Fix: some post form errors (#5212)
* Fix: type mismatch in post-form-attaches
* Fix: 'this is null' in post-form-window
Diffstat (limited to 'src/client/app/common')
| -rw-r--r-- | src/client/app/common/views/components/post-form-attaches.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/common/views/components/post-form-attaches.vue b/src/client/app/common/views/components/post-form-attaches.vue index 37422ba108..e051b6a808 100644 --- a/src/client/app/common/views/components/post-form-attaches.vue +++ b/src/client/app/common/views/components/post-form-attaches.vue @@ -36,7 +36,7 @@ export default Vue.extend({ required: true }, detachMediaFn: { - type: Object, + type: Function, required: false } }, |