This commit is contained in:
syuilo 2020-02-06 14:29:36 +09:00
parent 9506f53691
commit 3b34b3e9ea
2 changed files with 2 additions and 1 deletions

View file

@ -5,6 +5,7 @@ unreleaed
-------------------- --------------------
### 🐛Fixes ### 🐛Fixes
* もっと読み込むを続けていくと表示が遅くなっていく問題を修正 * もっと読み込むを続けていくと表示が遅くなっていく問題を修正
* Renote メニューが自分の投稿のRenoteでない限り表示されない問題を修正
12.0.0 indigo (2020/02/06) 12.0.0 indigo (2020/02/06)
-------------------- --------------------

View file

@ -458,7 +458,7 @@ export default Vue.extend({
}, },
showRenoteMenu(ev) { showRenoteMenu(ev) {
if (!this.isMyNote) return; if (!this.$store.getters.isSignedIn || (this.$store.state.i.id !== this.note.userId)) return;
this.$root.menu({ this.$root.menu({
items: [{ items: [{
text: this.$t('unrenote'), text: this.$t('unrenote'),