fix search bug and update changelog

This commit is contained in:
Jeremy Kauffman 2017-07-14 15:34:53 -04:00
parent f1b0c272cb
commit e918e9b17d
2 changed files with 5 additions and 3 deletions

View file

@ -11,17 +11,19 @@ Web UI version numbers should always match the corresponding version of LBRY App
* Added option to release claim when deleting a file
* Added transition to card hovers to smooth animation
* Support markdown makeup in claim description
*
* Replaced free speech flag (used when image is missing) with labeled color tiles
### Changed
* Publishes now uses claims rather than files
*
* Publishing revamped. Editing claims is much easier.
### Fixed
* Fixed bug with download notice when switching window focus
* Fixed newly published files appearing twice
* Fixed unconfirmed published files missing channel name
* Fixed old files from updated published claims appearing in downloaded list
* Fixed inappropriate text showing on searches
* Restored feedback on claim amounts
### Deprecated
*

View file

@ -67,7 +67,7 @@ class FileListSearch extends React.PureComponent {
{results && !!results.length
? <FileListSearchResults {...this.props} />
: <SearchNoResults {...this.props} />}
: !isSearching && <SearchNoResults {...this.props} />}
</div>
);
}