internetarchive / internetarchive/bookreader
Typo in a constructor property
- Dominant language
- JavaScript
- Stars
- 1.2k
- Forks
- 491
- Avg merge
- 2d 15h
- Merged PRs (30d)
- 3
Description
**Description**
In the file ``search-results.js`` which is inside ``src/BookNavigator/search/search-results.js`` there is a typo. In the **IABookSearchResults** class, there is a property named ``renderSearchAllFields`` in the constructor, but the correct property name is ``renderSearchAllFiles`` according to the static properties definition.
**Evidence / Screenshot (if possible)**

**Expectation**
Instead of:
```js
this.renderSearchAllFields = false;
```
It should be:
```js
this.renderSearchAllFiles = false;
```
Contributor guide
Assessment
This issue has not been assessed yet.