mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 07:13:09 +02:00
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
|
### 🐛Fixes
|
||||||
* もっと読み込むを続けていくと表示が遅くなっていく問題を修正
|
* もっと読み込むを続けていくと表示が遅くなっていく問題を修正
|
||||||
|
* Renote メニューが自分の投稿のRenoteでない限り表示されない問題を修正
|
||||||
|
|
||||||
12.0.0 indigo (2020/02/06)
|
12.0.0 indigo (2020/02/06)
|
||||||
--------------------
|
--------------------
|
||||||
|
|
|
@ -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'),
|
||||||
|
|
Loading…
Reference in a new issue