summaryrefslogtreecommitdiffstats
path: root/webapp/utils
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/utils')
-rw-r--r--webapp/utils/channel_intro_messages.jsx9
1 files changed, 5 insertions, 4 deletions
diff --git a/webapp/utils/channel_intro_messages.jsx b/webapp/utils/channel_intro_messages.jsx
index 36d8cdb2a..0c011734a 100644
--- a/webapp/utils/channel_intro_messages.jsx
+++ b/webapp/utils/channel_intro_messages.jsx
@@ -12,6 +12,7 @@ import TeamStore from 'stores/team_store.jsx';
import Constants from 'utils/constants.jsx';
import * as GlobalActions from 'actions/global_actions.jsx';
import Client from 'client/web_client.jsx';
+import ProfilePicture from 'components/profile_picture.jsx';
import React from 'react';
import {FormattedMessage, FormattedHTMLMessage, FormattedDate} from 'react-intl';
@@ -46,18 +47,18 @@ export function createDMIntroMessage(channel, centeredIntro) {
return (
<div className={'channel-intro ' + centeredIntro}>
<div className='post-profile-img__container channel-intro-img'>
- <img
- className='post-profile-img'
+ <ProfilePicture
src={Client.getUsersRoute() + '/' + teammate.id + '/image?time=' + teammate.update_at}
- height='50'
width='50'
+ height='50'
+ user={teammate}
/>
</div>
<div className='channel-intro-profile'>
<strong>
<UserProfile
user={teammate}
- disablePopover={true}
+ disablePopover={false}
/>
</strong>
</div>