changed let to const

This commit is contained in:
Addison Beck 2020-07-10 15:51:01 -05:00
parent 88765ad093
commit 36012e7d6f
1 changed files with 1 additions and 1 deletions

View File

@ -166,7 +166,7 @@ export class SearchService implements SearchServiceAbstraction {
} }
if (c.hasFields) { if (c.hasFields) {
for (let field of c.fields) { for (const field of c.fields) {
if (field.value.toLowerCase().indexOf(query) > -1) { if (field.value.toLowerCase().indexOf(query) > -1) {
return true; return true;
} }