logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe
commit: 8efe30c2dcc3d1ee22d00666ad6cb42f636ebb69
parent: b6bac4d06d815e2ccdcfc86ba14cae75908570ca
Author: Shpuld Shpludson <shp@cock.li>
Date:   Mon, 11 Feb 2019 15:01:15 +0000

Merge branch 'hotfix/open-link' into 'develop'

Fix clicking link - open new tab unless tag or mention

See merge request pleroma/pleroma-fe!562

Diffstat:

Msrc/components/status/status.js2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/src/components/status/status.js b/src/components/status/status.js @@ -298,8 +298,10 @@ const Status = { if (tag) { const link = this.generateTagLink(tag) this.$router.push(link) + return } } + window.open(target.href, '_blank') } }, toggleReplying () {