Fix: Mark display type as optional

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

@ -20475,7 +20475,7 @@ class PlexMeetsHomeAssistantEditor extends HTMLElement {
this.displayType.innerHTML = '';
const typeItems = document.createElement('paper-listbox');
typeItems.slot = 'dropdown-content';
this.displayType.label = 'Display Type';
this.displayType.label = 'Display Type (Optional)';
this.displayType.appendChild(typeItems);
this.displayType.style.width = '100%';
this.displayType.addEventListener('value-changed', this.valueUpdated);

@ -408,7 +408,7 @@ class PlexMeetsHomeAssistantEditor extends HTMLElement {
this.displayType.innerHTML = '';
const typeItems: any = document.createElement('paper-listbox');
typeItems.slot = 'dropdown-content';
this.displayType.label = 'Display Type';
this.displayType.label = 'Display Type (Optional)';
this.displayType.appendChild(typeItems);
this.displayType.style.width = '100%';
this.displayType.addEventListener('value-changed', this.valueUpdated);

Loading…
Cancel
Save