Skip to content

Commit

Permalink
Fixed: Allow selection of Cast/Crew names
Browse files Browse the repository at this point in the history
Fixed #9781
  • Loading branch information
mynameisbogdan committed Feb 14, 2024
1 parent ac2b2e6 commit db62edd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions frontend/src/Movie/Details/Credits/Cast/MovieCastPoster.js
@@ -1,3 +1,4 @@
import classNames from 'classnames';
import PropTypes from 'prop-types';
import React, { Component } from 'react';
import Icon from 'Components/Icon';
Expand Down Expand Up @@ -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>

Expand Down
5 changes: 3 additions & 2 deletions frontend/src/Movie/Details/Credits/Crew/MovieCrewPoster.js
@@ -1,3 +1,4 @@
import classNames from 'classnames';
import PropTypes from 'prop-types';
import React, { Component } from 'react';
import Icon from 'Components/Icon';
Expand Down Expand Up @@ -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>

Expand Down

0 comments on commit db62edd

Please sign in to comment.