Skip to content
Snippets Groups Projects
Commit f9c701a7 authored by Shpuld Shpludson's avatar Shpuld Shpludson
Browse files

Merge branch 'fix/hotfix-for-reply-navigation' into 'develop'

Unbreak reply navigation

See merge request !159
parents 55c48180 dc4755f2
No related branches found
No related tags found
1 merge request!159Unbreak reply navigation
Pipeline #
......@@ -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: {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment