Skip to content

Commit 30ed48b

Browse files
committed
chore(combo): fix lint issues
1 parent a89d39c commit 30ed48b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/app/combo/combo.sample.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -223,5 +223,6 @@ export class ComboSampleComponent implements OnInit, AfterViewInit {
223223
const searchTerm = filteringOptions.caseSensitive ? filterValue.trim() : filterValue.toLowerCase().trim();
224224
return collection.filter(i => filteringOptions.caseSensitive ?
225225
i[filteringOptions.filteringKey]?.includes(searchTerm) || i[this.igxCombo.groupKey]?.includes(searchTerm) :
226-
i[filteringOptions.filteringKey]?.toString().toLowerCase().includes(searchTerm) || i[this.igxCombo.groupKey]?.toString().toLowerCase().includes(searchTerm)) }
226+
i[filteringOptions.filteringKey]?.toString().toLowerCase().includes(searchTerm) || i[this.igxCombo.groupKey]?.toString().toLowerCase().includes(searchTerm))
227+
}
227228
}

0 commit comments

Comments
 (0)