diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/status/status.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/components/status/status.js b/src/components/status/status.js index e75400cb..46add8aa 100644 --- a/src/components/status/status.js +++ b/src/components/status/status.js @@ -41,6 +41,9 @@ const Status = { }, methods: { linkClicked ({target}) { + if (target.tagName === 'SPAN') { + target = target.parentNode + } if (target.tagName === 'A') { window.open(target.href, '_blank') } |
