diff --git a/app/components/channel_link/channel_link.js b/app/components/channel_link/channel_link.js index 3a346601e..7407f3411 100644 --- a/app/components/channel_link/channel_link.js +++ b/app/components/channel_link/channel_link.js @@ -63,7 +63,7 @@ export default class ChannelLink extends React.PureComponent { const channel = this.state.channel; if (!channel) { - return {'~' + this.props.channelName}; + return {`~${this.props.channelName}`}; } const suffix = this.props.channelName.substring(channel.name.length); @@ -74,7 +74,7 @@ export default class ChannelLink extends React.PureComponent { style={this.props.linkStyle} onPress={this.handlePress} > - {channel.display_name} + {`~${channel.display_name}`} {suffix}