Fixed: Allow selection of Cast/Crew names

Fixed #9781
This commit is contained in:
Bogdan 2024-02-14 19:05:23 +02:00
parent ac2b2e6215
commit db62eddf5a
2 changed files with 6 additions and 4 deletions

View File

@ -1,3 +1,4 @@
import classNames from 'classnames';
import PropTypes from 'prop-types';
import React, { Component } from 'react';
import Icon from 'Components/Icon';
@ -142,10 +143,10 @@ class MovieCastPoster extends Component {
</div>
</div>
<div className={styles.title}>
<div className={classNames(styles.title, 'swiper-no-swiping')}>
{personName}
</div>
<div className={styles.title}>
<div className={classNames(styles.title, 'swiper-no-swiping')}>
{character}
</div>

View File

@ -1,3 +1,4 @@
import classNames from 'classnames';
import PropTypes from 'prop-types';
import React, { Component } from 'react';
import Icon from 'Components/Icon';
@ -142,10 +143,10 @@ class MovieCrewPoster extends Component {
</div>
</div>
<div className={styles.title}>
<div className={classNames(styles.title, 'swiper-no-swiping')}>
{personName}
</div>
<div className={styles.title}>
<div className={classNames(styles.title, 'swiper-no-swiping')}>
{job}
</div>