Fix clicking link - open new tab unless tag or mention

This commit is contained in:
Edijs 2019-02-11 07:38:12 -07:00
parent b6bac4d06d
commit 9959c311a9

View file

@ -299,7 +299,9 @@ const Status = {
const link = this.generateTagLink(tag)
this.$router.push(link)
}
return
}
window.open(target.href, '_blank')
}
},
toggleReplying () {