diff --git a/src/components/status/status.js b/src/components/status/status.js index e75400cbd7..46add8aa0e 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') }