diff --git a/app/assets/javascripts/discourse/widgets/post-small-action.js.es6 b/app/assets/javascripts/discourse/widgets/post-small-action.js.es6 index 3aaa48f0c35..586e838e2d7 100644 --- a/app/assets/javascripts/discourse/widgets/post-small-action.js.es6 +++ b/app/assets/javascripts/discourse/widgets/post-small-action.js.es6 @@ -45,7 +45,11 @@ export default createWidget('post-small-action', { })); } - contents.push(avatarFor.call(this, 'small', { template: attrs.avatar_template, username: attrs.avatar })); + contents.push(avatarFor.call(this, 'small', { + template: attrs.avatar_template, + username: attrs.avatar, + url: attrs.usernameUrl + })); const description = actionDescriptionHtml(attrs.actionCode, attrs.created_at, attrs.actionCodeWho); contents.push(new RawHtml({ html: `
${description}
` }));