diff --git a/app/assets/javascripts/discourse/widgets/post-gutter.js.es6 b/app/assets/javascripts/discourse/widgets/post-gutter.js.es6 index f79ec5e5c..177d10321 100644 --- a/app/assets/javascripts/discourse/widgets/post-gutter.js.es6 +++ b/app/assets/javascripts/discourse/widgets/post-gutter.js.es6 @@ -34,7 +34,8 @@ export default createWidget('post-gutter', { linkBody.push(h('span.badge.badge-notification.clicks', l.clicks.toString())); } - const link = h('a.track-link', { attributes: { href: l.url } }, linkBody); + const className = l.reflection ? 'inbound' : 'outbound'; + const link = h('a.track-link', { className, attributes: { href: l.url } }, linkBody); result.push(h('li', link)); } }