mirror of https://github.com/vector-im/riot-web
Merge pull request #5582 from matrix-org/travis/widgets/fix-jitsi-unpin
Remove check that prevents Jitsi widgets from being unpinnedpull/21833/head
commit
61f6fa0633
|
@ -201,11 +201,6 @@ export class WidgetLayoutStore extends ReadyWatchingStore {
|
|||
const topWidgets: IApp[] = [];
|
||||
const rightWidgets: IApp[] = [];
|
||||
for (const widget of widgets) {
|
||||
if (WidgetType.JITSI.matches(widget.type)) {
|
||||
topWidgets.push(widget);
|
||||
continue;
|
||||
}
|
||||
|
||||
const stateContainer = roomLayout?.widgets?.[widget.id]?.container;
|
||||
const manualContainer = userLayout?.widgets?.[widget.id]?.container;
|
||||
const isLegacyPinned = !!legacyPinned?.[widget.id];
|
||||
|
|
Loading…
Reference in New Issue