forked from FoundKeyGang/FoundKey
Fix #5843
This commit is contained in:
parent
9506f53691
commit
3b34b3e9ea
2 changed files with 2 additions and 1 deletions
|
@ -5,6 +5,7 @@ unreleaed
|
|||
--------------------
|
||||
### 🐛Fixes
|
||||
* もっと読み込むを続けていくと表示が遅くなっていく問題を修正
|
||||
* Renote メニューが自分の投稿のRenoteでない限り表示されない問題を修正
|
||||
|
||||
12.0.0 indigo (2020/02/06)
|
||||
--------------------
|
||||
|
|
|
@ -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'),
|
||||
|
|
Loading…
Reference in a new issue