Skip to content

Commit e1138e6

Browse files
committed
chore(combo): Fix lint errors
1 parent 89ca7a0 commit e1138e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/igniteui-angular-wrappers/src/lib/igcombo/igcombo.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export class IgComboComponent extends IgControlBase<IgCombo> implements ControlV
5757
if (this.options.allowCustomValue) {
5858
jQuery(this._el).on('input', evt => {
5959
// 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);
60+
const item = jQuery(this._el).data('igCombo').itemsFromValue(this._model.model);
6161
if (this.options.multiSelection && this.options.multiSelection.enabled ||
6262
!item ||
6363
item.data && item.data.text !== evt.target.value) {

0 commit comments

Comments
 (0)