mirror of
https://github.com/Radarr/Radarr
synced 2026-04-20 00:52:23 +02:00
parent
a491c9a4a0
commit
a931f8a69f
1 changed files with 3 additions and 2 deletions
|
|
@ -52,7 +52,8 @@ class MovieCreditPosters extends Component {
|
|||
render() {
|
||||
const {
|
||||
items,
|
||||
itemComponent
|
||||
itemComponent,
|
||||
isSmallScreen
|
||||
} = this.props;
|
||||
|
||||
const {
|
||||
|
|
@ -67,7 +68,7 @@ class MovieCreditPosters extends Component {
|
|||
<Swiper
|
||||
slidesPerView='auto'
|
||||
spaceBetween={10}
|
||||
slidesPerGroup={3}
|
||||
slidesPerGroup={isSmallScreen ? 1 : 3}
|
||||
navigation={true}
|
||||
loop={false}
|
||||
loopFillGroupWithBlank={true}
|
||||
|
|
|
|||
Loading…
Reference in a new issue