diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2020-02-06 14:29:36 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2020-02-06 14:29:36 +0900 |
| commit | 3b34b3e9ea679e09c4796bcc8cb26ad1ec181119 (patch) | |
| tree | 4f6aa3c64d0d9754d2e06102ce790754bcd782b6 | |
| parent | Update CHANGELOG.md (diff) | |
| download | misskey-3b34b3e9ea679e09c4796bcc8cb26ad1ec181119.tar.gz misskey-3b34b3e9ea679e09c4796bcc8cb26ad1ec181119.tar.bz2 misskey-3b34b3e9ea679e09c4796bcc8cb26ad1ec181119.zip | |
Fix #5843
| -rw-r--r-- | CHANGELOG.md | 1 | ||||
| -rw-r--r-- | src/client/components/note.vue | 2 |
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'), |