Fix method call for updates when items are changed.

This commit is contained in:
2022-03-19 23:54:58 +01:00
parent 2f7bb699de
commit 63b5d785b7
2 changed files with 5 additions and 1 deletions

View File

@@ -348,6 +348,10 @@ class TpDropdown extends BaseElement {
this._focusChanged(this.focused, changes.get('focused'));
}
if (changes.has('items')) {
this._itemsChanged();
}
if (changes.has('value')) {
this._valueChanged();
this.dispatchEvent(new CustomEvent('value-changed', { detail: this.value, bubbles: true, composed: true }));