fix(Thumbnail):limit the size of the avatar to 200

pull/12830/head jitsi-meet_8250
Hristo Terezov 2 years ago
parent 2bf3089dbf
commit fd7b6f457e
  1. 2
      react/features/filmstrip/components/web/Thumbnail.tsx

@ -665,7 +665,7 @@ class Thumbnail extends Component<IProps, IState> {
video: {} video: {}
}; };
const avatarSize = Math.min(_height / 2, _width - 30); const avatarSize = Math.min(_height / 2, _width - 30, 200);
let { left } = style || {}; let { left } = style || {};
if (typeof left === 'number' && horizontalOffset) { if (typeof left === 'number' && horizontalOffset) {

Loading…
Cancel
Save