forked from AkkomaGang/akkoma-fe
Make goto-check use the correct property to make it work again
This commit is contained in:
parent
55c4818084
commit
dc4755f2ff
1 changed files with 1 additions and 10 deletions
|
@ -92,7 +92,7 @@ const Status = {
|
|||
},
|
||||
gotoOriginal (id) {
|
||||
// only handled by conversation, not status_or_conversation
|
||||
if (this.expanded) {
|
||||
if (this.inConversation) {
|
||||
this.$emit('goto', id)
|
||||
}
|
||||
},
|
||||
|
@ -122,18 +122,9 @@ const Status = {
|
|||
} else if (this.preview.id !== targetId) {
|
||||
this.preview = find(statuses, { 'id': targetId })
|
||||
}
|
||||
/*
|
||||
if (this.$store.state.config.hoverPreview) {
|
||||
let rect = event.target.getBoundingClientRect()
|
||||
this.$emit('preview', Number(id), rect.left + 20, rect.top + 20 + window.pageYOffset)
|
||||
}
|
||||
*/
|
||||
},
|
||||
replyLeave () {
|
||||
this.showPreview = false
|
||||
/*
|
||||
this.$emit('preview', 0, 0, 0)
|
||||
*/
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
|
|
Loading…
Reference in a new issue