mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-09 04:22:30 +01:00
parent
cdd653bea9
commit
ccb206aed1
@ -16,6 +16,7 @@ function createCleanMovieSelector() {
|
|||||||
title,
|
title,
|
||||||
titleSlug,
|
titleSlug,
|
||||||
sortTitle,
|
sortTitle,
|
||||||
|
year,
|
||||||
images,
|
images,
|
||||||
alternateTitles = [],
|
alternateTitles = [],
|
||||||
tags = []
|
tags = []
|
||||||
@ -25,6 +26,7 @@ function createCleanMovieSelector() {
|
|||||||
title,
|
title,
|
||||||
titleSlug,
|
titleSlug,
|
||||||
sortTitle,
|
sortTitle,
|
||||||
|
year,
|
||||||
images,
|
images,
|
||||||
alternateTitles,
|
alternateTitles,
|
||||||
firstCharacter: title.charAt(0).toLowerCase(),
|
firstCharacter: title.charAt(0).toLowerCase(),
|
||||||
|
@ -9,6 +9,7 @@ function MovieSearchResult(props) {
|
|||||||
const {
|
const {
|
||||||
match,
|
match,
|
||||||
title,
|
title,
|
||||||
|
year,
|
||||||
images,
|
images,
|
||||||
alternateTitles,
|
alternateTitles,
|
||||||
tags
|
tags
|
||||||
@ -35,7 +36,7 @@ function MovieSearchResult(props) {
|
|||||||
|
|
||||||
<div className={styles.titles}>
|
<div className={styles.titles}>
|
||||||
<div className={styles.title}>
|
<div className={styles.title}>
|
||||||
{title}
|
{title} { year > 0 ? `(${year})` : ''}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{
|
{
|
||||||
@ -65,6 +66,7 @@ function MovieSearchResult(props) {
|
|||||||
|
|
||||||
MovieSearchResult.propTypes = {
|
MovieSearchResult.propTypes = {
|
||||||
title: PropTypes.string.isRequired,
|
title: PropTypes.string.isRequired,
|
||||||
|
year: PropTypes.number.isRequired,
|
||||||
images: PropTypes.arrayOf(PropTypes.object).isRequired,
|
images: PropTypes.arrayOf(PropTypes.object).isRequired,
|
||||||
alternateTitles: PropTypes.arrayOf(PropTypes.object).isRequired,
|
alternateTitles: PropTypes.arrayOf(PropTypes.object).isRequired,
|
||||||
tags: PropTypes.arrayOf(PropTypes.object).isRequired,
|
tags: PropTypes.arrayOf(PropTypes.object).isRequired,
|
||||||
|
Loading…
Reference in New Issue
Block a user