Remove check that prevents Jitsi widgets from being unpinned

Later in the code we do a conditional on the widget type to auto-pin the widget, so we don't need this one to force the widget higher.

Fixes https://github.com/vector-im/element-web/issues/16280
pull/21833/head
Travis Ralston 2021-01-27 14:31:48 -07:00
parent 33a86f6cbe
commit 08b067fd68
1 changed files with 0 additions and 5 deletions

View File

@ -201,11 +201,6 @@ export class WidgetLayoutStore extends ReadyWatchingStore {
const topWidgets: IApp[] = []; const topWidgets: IApp[] = [];
const rightWidgets: IApp[] = []; const rightWidgets: IApp[] = [];
for (const widget of widgets) { for (const widget of widgets) {
if (WidgetType.JITSI.matches(widget.type)) {
topWidgets.push(widget);
continue;
}
const stateContainer = roomLayout?.widgets?.[widget.id]?.container; const stateContainer = roomLayout?.widgets?.[widget.id]?.container;
const manualContainer = userLayout?.widgets?.[widget.id]?.container; const manualContainer = userLayout?.widgets?.[widget.id]?.container;
const isLegacyPinned = !!legacyPinned?.[widget.id]; const isLegacyPinned = !!legacyPinned?.[widget.id];