mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 16:23:44 +00:00
changed let to const
This commit is contained in:
@@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user