Fix: Vertical view not working

pull/72/head
Juraj Nyíri 3 years ago
parent 4c467253a6
commit 87cc39d051

@ -22448,7 +22448,7 @@ class PlexMeetsHomeAssistant extends HTMLElement {
} }
return false; return false;
}); });
if (render) { if (render && containerWidth > 0) {
this.contentContainer.style.width = `${containerWidth}px`; this.contentContainer.style.width = `${containerWidth}px`;
} }
return { return {

@ -684,7 +684,7 @@ class PlexMeetsHomeAssistant extends HTMLElement {
} }
return false; return false;
}); });
if (render) { if (render && containerWidth > 0) {
this.contentContainer.style.width = `${containerWidth}px`; this.contentContainer.style.width = `${containerWidth}px`;
} }
return { return {

Loading…
Cancel
Save