Skip to content

Commit

Permalink
fix(ui5-combobox): allow setting value with javascript (#2253)
Browse files Browse the repository at this point in the history
  • Loading branch information
fifoosid authored Oct 5, 2020
1 parent a816cef commit 0742854
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/main/src/ComboBox.js
Original file line number Diff line number Diff line change
Expand Up @@ -394,6 +394,8 @@ class ComboBox extends UI5Element {
if (this._initialRendering) {
domValue = this.value;
this._filteredItems = this.items;
} else if (this.value !== this.filterValue) {
domValue = this.filterValue ? this.filterValue : this.value;
} else {
domValue = this.filterValue;
}
Expand Down

0 comments on commit 0742854

Please sign in to comment.