()
| 1840 | } |
| 1841 | |
| 1842 | _syncSelection() { |
| 1843 | // set selected property of the items based on the selection value |
| 1844 | this._getItems().forEach(item => { |
| 1845 | if (isInstanceOfMultiComboBoxItem(item) && item.value) { |
| 1846 | item.selected = this.selectedValues.includes(item.value); |
| 1847 | } |
| 1848 | }); |
| 1849 | } |
| 1850 | |
| 1851 | onBeforeRendering() { |
| 1852 | const input = this._innerInput; |
no test coverage detected