We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89ca7a0 commit e1138e6Copy full SHA for e1138e6
projects/igniteui-angular-wrappers/src/lib/igcombo/igcombo.component.ts
@@ -57,7 +57,7 @@ export class IgComboComponent extends IgControlBase<IgCombo> implements ControlV
57
if (this.options.allowCustomValue) {
58
jQuery(this._el).on('input', evt => {
59
// D.K. #324 Do not override the model value if the text value is representing the same model value
60
- let item = jQuery(this._el).data("igCombo").itemsFromValue(this._model.model);
+ const item = jQuery(this._el).data('igCombo').itemsFromValue(this._model.model);
61
if (this.options.multiSelection && this.options.multiSelection.enabled ||
62
!item ||
63
item.data && item.data.text !== evt.target.value) {
0 commit comments