make rooms come in from left rather than the right
This commit is contained in:
parent
aaea40a93d
commit
5efd92f3ec
2 changed files with 10 additions and 15 deletions
|
@ -60,9 +60,9 @@ export default class RoomBreadcrumbs extends React.Component {
|
|||
if (existingIdx !== -1) {
|
||||
rooms.splice(existingIdx, 1);
|
||||
}
|
||||
rooms.push(room);
|
||||
rooms.splice(0, 0, room);
|
||||
if (rooms.length > MAX_ROOMS) {
|
||||
rooms.splice(0, rooms.length - MAX_ROOMS);
|
||||
rooms.splice(MAX_ROOMS, rooms.length - MAX_ROOMS);
|
||||
}
|
||||
this.setState({rooms});
|
||||
}
|
||||
|
@ -79,6 +79,6 @@ export default class RoomBreadcrumbs extends React.Component {
|
|||
</AccessibleButton>
|
||||
);
|
||||
});
|
||||
return (<div className="mx_RoomBreadcrumbs"><div>{ avatars }</div></div>);
|
||||
return (<div className="mx_RoomBreadcrumbs">{ avatars }</div>);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue