diff options
| author | bobzel <zzzman@gmail.com> | 2020-10-16 01:26:01 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2020-10-16 01:26:01 -0400 |
| commit | 67e3a220a622ff1a1a54f04df48d57c34a3a387d (patch) | |
| tree | 1134c8a2344ce9c9109097a801df1b69c7e570bc /src/client/views/search | |
| parent | 51066af7ddc8dc890ed67858579227f8484e7263 (diff) | |
fixed compile warn ings.
Diffstat (limited to 'src/client/views/search')
| -rw-r--r-- | src/client/views/search/SearchBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/search/SearchBox.tsx b/src/client/views/search/SearchBox.tsx index 13fcccdcf..bc00e93a5 100644 --- a/src/client/views/search/SearchBox.tsx +++ b/src/client/views/search/SearchBox.tsx @@ -122,7 +122,7 @@ export class SearchBox extends ViewBoxBaseComponent<FieldViewProps, SearchBoxDoc const filters: string[] = []; - for (let initFilter of initialfilters) { + for (const initFilter of initialfilters) { const fields = initFilter.split(":"); if (fields[2] !== undefined) { filters.push(fields[0]); |
