vertical: true with "unslick" mode make big height of box (empty space)
Abierto
- Lenguaje dominante
- JavaScript
- Estrellas
- 11.9k
- Forks
- 2.1k
- Métricas de merge de PR
- Sin PR fusionados en 30 d
Descripción

Example: https://codesandbox.io/s/react-slick-playground-forked-jcn3k?file=/index.js
This bug because:
1. Missed `style: listStyle` here (`slick-list` without any limit):
```javascript
if (this.props.unslick) {
listProps = { className: "slick-list" };
innerSliderProps = { className };
}
```
2. Wrong calculation here for `vertical && unslick`, because no cloned items here:
```javascript
const trackChildren = spec.slideCount + 2 * spec.slidesToShow;
```
Guía de contribución
Evaluación
Este issue todavía no se ha evaluado.