1
0
mirror of https://akkoma.dev/lamp/akkoma-fe.git synced 2025-07-31 00:11:52 -04:00

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

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