mirror of
https://github.com/Readarr/Readarr
synced 2026-02-05 22:32:31 +01:00
Fixed: Show number in series on Series page
This commit is contained in:
parent
3d905e45ce
commit
9beafd5265
1 changed files with 13 additions and 0 deletions
|
|
@ -72,6 +72,7 @@ class BookRow extends Component {
|
|||
releaseDate,
|
||||
title,
|
||||
seriesTitle,
|
||||
position,
|
||||
pageCount,
|
||||
ratings,
|
||||
isSaving,
|
||||
|
|
@ -140,6 +141,17 @@ class BookRow extends Component {
|
|||
);
|
||||
}
|
||||
|
||||
if (name === 'position') {
|
||||
return (
|
||||
<TableRowCell
|
||||
key={name}
|
||||
className={styles.title}
|
||||
>
|
||||
{position || ''}
|
||||
</TableRowCell>
|
||||
);
|
||||
}
|
||||
|
||||
if (name === 'rating') {
|
||||
return (
|
||||
<TableRowCell key={name}>
|
||||
|
|
@ -216,6 +228,7 @@ BookRow.propTypes = {
|
|||
releaseDate: PropTypes.string,
|
||||
title: PropTypes.string.isRequired,
|
||||
seriesTitle: PropTypes.string.isRequired,
|
||||
position: PropTypes.number,
|
||||
pageCount: PropTypes.number,
|
||||
ratings: PropTypes.object.isRequired,
|
||||
titleSlug: PropTypes.string.isRequired,
|
||||
|
|
|
|||
Loading…
Reference in a new issue