summaryrefslogtreecommitdiff
path: root/src/web
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-02-18 23:56:25 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-02-18 23:56:25 +0900
commitdf67bbac9fb7d87b0fda08d118298a85675dd34c (patch)
tree6a5c0d072289ae0d55bcf1de3bd21acae66db052 /src/web
parentwip (diff)
downloadmisskey-df67bbac9fb7d87b0fda08d118298a85675dd34c.tar.gz
misskey-df67bbac9fb7d87b0fda08d118298a85675dd34c.tar.bz2
misskey-df67bbac9fb7d87b0fda08d118298a85675dd34c.zip
wip
Diffstat (limited to 'src/web')
-rw-r--r--src/web/app/common/views/components/messaging-form.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/web/app/common/views/components/messaging-form.vue b/src/web/app/common/views/components/messaging-form.vue
index 37ac51509d..0b0ab8aded 100644
--- a/src/web/app/common/views/components/messaging-form.vue
+++ b/src/web/app/common/views/components/messaging-form.vue
@@ -33,7 +33,7 @@ export default Vue.extend({
const items = data.items;
for (const item of items) {
if (item.kind == 'file') {
- this.upload(item.getAsFile());
+ //this.upload(item.getAsFile());
}
}
},
@@ -58,7 +58,7 @@ export default Vue.extend({
upload() {
// TODO
- }
+ },
send() {
this.sending = true;
@@ -76,7 +76,7 @@ export default Vue.extend({
clear() {
this.text = '';
- this.files = [];
+ this.file = null;
}
}
});