Fix: Hide scroll when not available

pull/51/head
Juraj Nyíri 3 years ago
parent 0b481e6e96
commit a7e7f97dbc

@ -20889,6 +20889,9 @@ class PlexMeetsHomeAssistantEditor extends HTMLElement {
this.displayType.style.display = 'none';
this.config.displayType = '';
this.displayType.value = '';
this.sort.style.display = 'none';
this.sortOrder.style.display = 'none';
this.config.sort = '';
}
if (lodash.isEmpty(this.config.sort)) {
this.sort.value = '';

@ -850,6 +850,9 @@ class PlexMeetsHomeAssistantEditor extends HTMLElement {
this.displayType.style.display = 'none';
this.config.displayType = '';
this.displayType.value = '';
this.sort.style.display = 'none';
this.sortOrder.style.display = 'none';
this.config.sort = '';
}
if (_.isEmpty(this.config.sort)) {

Loading…
Cancel
Save