mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
FIX: post link arrow position with long title
This commit is contained in:
parent
1ec25ba2a7
commit
2605c87ed9
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ export default createWidget('post-links', {
|
||||||
h('a.track-link', {
|
h('a.track-link', {
|
||||||
className: link.reflection ? 'inbound' : 'outbound',
|
className: link.reflection ? 'inbound' : 'outbound',
|
||||||
attributes: { href: link.url }
|
attributes: { href: link.url }
|
||||||
}, [linkBody, iconNode(link.reflection ? 'arrow-left' : 'arrow-right')])
|
}, [iconNode(link.reflection ? 'arrow-left' : 'arrow-right'), linkBody])
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue