Merge pull request #7517 from mattermost/MM-53927_empty-channel-name-in-search
MM-53927 - fix channel names not shown during search
This commit is contained in:
commit
840a3f4958
1 changed files with 1 additions and 1 deletions
|
|
@ -219,7 +219,7 @@ const FilteredList = ({
|
|||
/>
|
||||
);
|
||||
}
|
||||
if ('teamId' in item) {
|
||||
if ('teamId' in item || 'team_id' in item) {
|
||||
return (
|
||||
<ChannelItem
|
||||
channel={item}
|
||||
|
|
|
|||
Loading…
Reference in a new issue