diff --git a/app/assets/javascripts/discourse/widgets/topic-map.js.es6 b/app/assets/javascripts/discourse/widgets/topic-map.js.es6 index ccba2891a28..0564351b568 100644 --- a/app/assets/javascripts/discourse/widgets/topic-map.js.es6 +++ b/app/assets/javascripts/discourse/widgets/topic-map.js.es6 @@ -66,15 +66,19 @@ createWidget('topic-map-summary', { contents.push(h('li', [ h('h4', I18n.t('created_lowercase')), - avatarFor('tiny', { username: attrs.createdByUsername, template: attrs.createdByAvatarTemplate }), - dateNode(attrs.topicCreatedAt) + h('div.topic-map-post.created-at', [ + avatarFor('tiny', { username: attrs.createdByUsername, template: attrs.createdByAvatarTemplate }), + dateNode(attrs.topicCreatedAt) + ]) ] )); contents.push(h('li', h('a', { attributes: { href: attrs.lastPostUrl } }, [ h('h4', I18n.t('last_reply_lowercase')), - avatarFor('tiny', { username: attrs.lastPostUsername, template: attrs.lastPostAvatarTemplate }), - dateNode(attrs.lastPostAt) + h('div.topic-map-post.last-reply', [ + avatarFor('tiny', { username: attrs.lastPostUsername, template: attrs.lastPostAvatarTemplate }), + dateNode(attrs.lastPostAt) + ]) ]) )); contents.push(h('li', [