From 7645e0413c549c5e412a8a0f5c28d637768fe285 Mon Sep 17 00:00:00 2001 From: Dariusz Niemczyk Date: Tue, 24 Aug 2021 16:06:10 +0200 Subject: [PATCH 1/2] Fix resizer crashing jitsi --- src/resizer/resizer.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/resizer/resizer.ts b/src/resizer/resizer.ts index 92f458e7c7..19af425b8b 100644 --- a/src/resizer/resizer.ts +++ b/src/resizer/resizer.ts @@ -78,7 +78,7 @@ export default class Resizer { } public attach() { - const attachment = this?.config?.handler.parentElement ?? this.container; + const attachment = this?.config?.handler?.parentElement ?? this.container; attachment.addEventListener("mousedown", this.onMouseDown, false); window.addEventListener("resize", this.onResize); } From 1e1fc647692c9d7b2647bd36b1e1f96aa612a021 Mon Sep 17 00:00:00 2001 From: Dariusz Niemczyk Date: Tue, 24 Aug 2021 16:06:20 +0200 Subject: [PATCH 2/2] Fix breadcrumbs overflowing left-panel --- res/css/structures/_LeftPanel.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/res/css/structures/_LeftPanel.scss b/res/css/structures/_LeftPanel.scss index 5603de18d8..da17e5f1f9 100644 --- a/res/css/structures/_LeftPanel.scss +++ b/res/css/structures/_LeftPanel.scss @@ -50,6 +50,7 @@ $roomListCollapsedWidth: 68px; contain: content; position: relative; flex-grow: 1; + overflow: hidden; // Note: The 'room list' in this context is actually everything that isn't the tag // panel, such as the menu options, breadcrumbs, filtering, etc