Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/db62eddf5a8c817a4cf13cfff5a80730624d5697 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed: Allow selection of Cast/Crew names

Fixed 
pull/9417/merge
Bogdan 1 year ago
parent ac2b2e6215
commit db62eddf5a

@ -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>

@ -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>

Loading…
Cancel
Save