mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 03:36:07 +03:00
Hide room list show less button if it would do nothing
Signed-off-by: ☕ Tim <tim@wants.coffee> On the new rooms list, if the show less button wouldn't result in a smaller list, don't show it. Fixes vector-im/riot-web#14219
This commit is contained in:
parent
5172c7b205
commit
c8381021b8
1 changed files with 1 additions and 1 deletions
|
@ -393,7 +393,7 @@ export default class RoomSublist2 extends React.Component<IProps, IState> {
|
||||||
{showMoreText}
|
{showMoreText}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
} else if (tiles.length <= nVisible && tiles.length > this.props.layout.minVisibleTiles) {
|
} else if (tiles.length <= nVisible && tiles.length > this.props.layout.defaultVisibleTiles) {
|
||||||
// we have all tiles visible - add a button to show less
|
// we have all tiles visible - add a button to show less
|
||||||
let showLessText = (
|
let showLessText = (
|
||||||
<span className='mx_RoomSublist2_showNButtonText'>
|
<span className='mx_RoomSublist2_showNButtonText'>
|
||||||
|
|
Loading…
Reference in a new issue