Skip to content

Commit

Permalink
chore(combo): Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
dkamburov committed Sep 23, 2020
1 parent 89ca7a0 commit e1138e6
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -57,7 +57,7 @@ export class IgComboComponent extends IgControlBase<IgCombo> implements ControlV
if (this.options.allowCustomValue) {
jQuery(this._el).on('input', evt => {
// D.K. #324 Do not override the model value if the text value is representing the same model value
let item = jQuery(this._el).data("igCombo").itemsFromValue(this._model.model);
const item = jQuery(this._el).data('igCombo').itemsFromValue(this._model.model);
if (this.options.multiSelection && this.options.multiSelection.enabled ||
!item ||
item.data && item.data.text !== evt.target.value) {
Expand Down

0 comments on commit e1138e6

Please sign in to comment.