MM-11968 Fix uppercase at mentions (#2082)
This commit is contained in:
parent
9bd46b48ce
commit
57a2d3103d
1 changed files with 1 additions and 1 deletions
|
|
@ -80,7 +80,7 @@ export default class AtMention extends React.PureComponent {
|
|||
};
|
||||
|
||||
getUserDetailsFromMentionName(props) {
|
||||
let mentionName = props.mentionName;
|
||||
let mentionName = props.mentionName.toLowerCase();
|
||||
|
||||
while (mentionName.length > 0) {
|
||||
if (props.usersByUsername.hasOwnProperty(mentionName)) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue