fix(tile-view, rn) Fix tile view in landscape (#11749)
Increase number of max columns to 4
This commit is contained in:
parent
7b538fc3e9
commit
ec47f530bc
|
@ -112,7 +112,7 @@ export function getColumnCount(stateful: Object | Function) {
|
|||
return 2;
|
||||
}
|
||||
|
||||
return Math.min(3, participantCount);
|
||||
return Math.min(participantCount <= 6 ? 3 : 4, participantCount);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue