summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2019-01-15 18:28:11 +0900
committersyuilo <syuilotan@yahoo.co.jp>2019-01-15 18:28:11 +0900
commitf433182c4cd449a08eb436df30bee731345240c1 (patch)
tree7307dd06eccb1dcb8d1d46943937df85f18cb4e9 /src
parentCorrect some weird french translations in the docs. (#3884) (diff)
downloadmisskey-f433182c4cd449a08eb436df30bee731345240c1.tar.gz
misskey-f433182c4cd449a08eb436df30bee731345240c1.tar.bz2
misskey-f433182c4cd449a08eb436df30bee731345240c1.zip
Revert "Resolve #3813 (#3814)"
This reverts commit 96515c454423d9f7aba501f7c1d08d5327645f31.
Diffstat (limited to 'src')
-rw-r--r--src/client/app/desktop/views/components/post-form.vue6
-rw-r--r--src/client/app/mobile/views/components/post-form.vue6
2 files changed, 0 insertions, 12 deletions
diff --git a/src/client/app/desktop/views/components/post-form.vue b/src/client/app/desktop/views/components/post-form.vue
index 781ead17f9..9c2807663b 100644
--- a/src/client/app/desktop/views/components/post-form.vue
+++ b/src/client/app/desktop/views/components/post-form.vue
@@ -222,12 +222,6 @@ export default Vue.extend({
});
}
- // keep cw when reply
- if (this.reply && this.reply.cw != null) {
- this.useCw = true;
- this.cw = this.reply.cw;
- }
-
this.$nextTick(() => {
// 書きかけの投稿を復元
if (!this.instant && !this.mention) {
diff --git a/src/client/app/mobile/views/components/post-form.vue b/src/client/app/mobile/views/components/post-form.vue
index 7bee017678..58718e2a98 100644
--- a/src/client/app/mobile/views/components/post-form.vue
+++ b/src/client/app/mobile/views/components/post-form.vue
@@ -211,12 +211,6 @@ export default Vue.extend({
});
}
- // keep cw when reply
- if (this.reply && this.reply.cw != null) {
- this.useCw = true;
- this.cw = this.reply.cw;
- }
-
this.focus();
this.$nextTick(() => {