summaryrefslogtreecommitdiff
path: root/src/client/app/mobile
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2019-07-04 14:45:33 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2019-07-04 14:45:33 +0900
commit2e1a9dffbea4c8cb8665d71be05ccb677465768c (patch)
tree69ad1af9ff8aafba5b9e16d4b128d80b04c9113e /src/client/app/mobile
parentAPNG support (diff)
parentアバターファイル選択でimage以外は表示しないように (#5098) (diff)
downloadsharkey-2e1a9dffbea4c8cb8665d71be05ccb677465768c.tar.gz
sharkey-2e1a9dffbea4c8cb8665d71be05ccb677465768c.tar.bz2
sharkey-2e1a9dffbea4c8cb8665d71be05ccb677465768c.zip
Merge branch 'develop' of https://github.com/syuilo/misskey into develop
Diffstat (limited to 'src/client/app/mobile')
-rw-r--r--src/client/app/mobile/views/components/drive-file-chooser.vue3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/app/mobile/views/components/drive-file-chooser.vue b/src/client/app/mobile/views/components/drive-file-chooser.vue
index b72c796c1d..8795102f97 100644
--- a/src/client/app/mobile/views/components/drive-file-chooser.vue
+++ b/src/client/app/mobile/views/components/drive-file-chooser.vue
@@ -8,6 +8,7 @@
</header>
<x-drive class="drive" ref="browser"
:select-file="true"
+ :type="type"
:multiple="multiple"
@change-selection="onChangeSelection"
@selected="onSelected"
@@ -25,7 +26,7 @@ export default Vue.extend({
components: {
XDrive: () => import('./drive.vue').then(m => m.default),
},
- props: ['multiple'],
+ props: ['type', 'multiple'],
data() {
return {
files: []