mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
FIX: Missing inbound
/ outbound
classes
This commit is contained in:
parent
fa9943c162
commit
33aad09672
1 changed files with 2 additions and 1 deletions
|
@ -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));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue