fix lock icon + drop user

This commit is contained in:
Ramón Souza 2021-10-25 19:58:37 +00:00
parent 032b677cfc
commit ff86eebb22
2 changed files with 2 additions and 2 deletions

View File

@ -501,7 +501,7 @@ class BreakoutRoom extends PureComponent {
changeUserRoom(userId, room) {
const { users, freeJoin } = this.state;
const idxUser = users.findIndex((user) => user.userId === userId);
const idxUser = users.findIndex((user) => user.userId === userId.replace('roomUserItem-', ''));
const usersCopy = [...users];

View File

@ -232,7 +232,7 @@ const LockIcon = styled.span`
&:after {
font-family: 'bbb-icons' !important;
content: "\E926";
content: '\\e926';
color: var(--color-gray-light);
}
`;