[FIX] Wrong Team's icon on SelectTeam item's list (#4469)
This commit is contained in:
parent
991d7156a9
commit
8d26230e4f
|
@ -659,7 +659,8 @@ class RoomActionsView extends React.Component<IRoomActionsViewProps, IRoomAction
|
||||||
const data = teamRooms.map(team => ({
|
const data = teamRooms.map(team => ({
|
||||||
rid: team.teamId as string,
|
rid: team.teamId as string,
|
||||||
t: team.t,
|
t: team.t,
|
||||||
name: team.name
|
name: team.name,
|
||||||
|
teamMain: team.teamMain
|
||||||
}));
|
}));
|
||||||
navigation.navigate('SelectListView', {
|
navigation.navigate('SelectListView', {
|
||||||
title: 'Move_to_Team',
|
title: 'Move_to_Team',
|
||||||
|
|
Loading…
Reference in New Issue