diff --git a/app/assets/javascripts/discourse/widgets/post-links.js.es6 b/app/assets/javascripts/discourse/widgets/post-links.js.es6 index a846b6d74..d716599ce 100644 --- a/app/assets/javascripts/discourse/widgets/post-links.js.es6 +++ b/app/assets/javascripts/discourse/widgets/post-links.js.es6 @@ -22,7 +22,7 @@ export default createWidget('post-links', { h('a.track-link', { className: link.reflection ? 'inbound' : 'outbound', attributes: { href: link.url } - }, [linkBody, iconNode(link.reflection ? 'arrow-left' : 'arrow-right')]) + }, [iconNode(link.reflection ? 'arrow-left' : 'arrow-right'), linkBody]) ); },