From 22ffcf922a8f7376d63b1464cc0c5a3af348a7b0 Mon Sep 17 00:00:00 2001 From: Avram Tudor Date: Mon, 10 Jan 2022 12:45:46 +0200 Subject: [PATCH] fix(thresholds) adjust thresholds for smaller width integrations (#10749) allows chat button to be displayed when there should be enough space for it --- react/features/toolbox/constants.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/react/features/toolbox/constants.js b/react/features/toolbox/constants.js index 278f18904..3d35ae9b1 100644 --- a/react/features/toolbox/constants.js +++ b/react/features/toolbox/constants.js @@ -19,11 +19,11 @@ export const THRESHOLDS = [ order: [ 'microphone', 'camera', 'chat', 'participants' ] }, { - width: 320, + width: 225, order: [ 'microphone', 'camera', 'chat' ] }, { - width: 270, + width: 200, order: [ 'microphone', 'camera' ] } ];