FIX: post link arrow position with long title

This commit is contained in:
Régis Hanol 2016-06-08 12:12:40 +02:00
parent 1ec25ba2a7
commit 2605c87ed9
1 changed files with 1 additions and 1 deletions

View File

@ -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])
);
},