mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-20 21:54:25 -04:00
New: Search bar searches books as well as authors
This commit is contained in:
@@ -8,7 +8,7 @@ import styles from './AuthorSearchResult.css';
|
||||
function AuthorSearchResult(props) {
|
||||
const {
|
||||
match,
|
||||
authorName,
|
||||
name,
|
||||
images,
|
||||
tags
|
||||
} = props;
|
||||
@@ -31,7 +31,7 @@ function AuthorSearchResult(props) {
|
||||
|
||||
<div className={styles.titles}>
|
||||
<div className={styles.title}>
|
||||
{authorName}
|
||||
{name}
|
||||
</div>
|
||||
|
||||
{
|
||||
@@ -52,7 +52,7 @@ function AuthorSearchResult(props) {
|
||||
}
|
||||
|
||||
AuthorSearchResult.propTypes = {
|
||||
authorName: PropTypes.string.isRequired,
|
||||
name: PropTypes.string.isRequired,
|
||||
images: PropTypes.arrayOf(PropTypes.object).isRequired,
|
||||
tags: PropTypes.arrayOf(PropTypes.object).isRequired,
|
||||
match: PropTypes.object.isRequired
|
||||
|
||||
Reference in New Issue
Block a user