mirror of
https://github.com/discourse/discourse.git
synced 2025-04-25 23:44:32 +08:00
FIX: Missing inbound
/ outbound
classes
This commit is contained in:
parent
fa9943c162
commit
33aad09672
@ -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…
x
Reference in New Issue
Block a user