summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2020-02-06 14:29:36 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2020-02-06 14:29:36 +0900
commit3b34b3e9ea679e09c4796bcc8cb26ad1ec181119 (patch)
tree4f6aa3c64d0d9754d2e06102ce790754bcd782b6
parentUpdate CHANGELOG.md (diff)
downloadmisskey-3b34b3e9ea679e09c4796bcc8cb26ad1ec181119.tar.gz
misskey-3b34b3e9ea679e09c4796bcc8cb26ad1ec181119.tar.bz2
misskey-3b34b3e9ea679e09c4796bcc8cb26ad1ec181119.zip
Fix #5843
-rw-r--r--CHANGELOG.md1
-rw-r--r--src/client/components/note.vue2
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6f40f1a44a..212b402dd3 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,7 @@ unreleaed
--------------------
### 🐛Fixes
* もっと読み込むを続けていくと表示が遅くなっていく問題を修正
+* Renote メニューが自分の投稿のRenoteでない限り表示されない問題を修正
12.0.0 indigo (2020/02/06)
--------------------
diff --git a/src/client/components/note.vue b/src/client/components/note.vue
index f143fe75ae..7600a40582 100644
--- a/src/client/components/note.vue
+++ b/src/client/components/note.vue
@@ -458,7 +458,7 @@ export default Vue.extend({
},
showRenoteMenu(ev) {
- if (!this.isMyNote) return;
+ if (!this.$store.getters.isSignedIn || (this.$store.state.i.id !== this.note.userId)) return;
this.$root.menu({
items: [{
text: this.$t('unrenote'),