piotr-s-brainhub
piotr-s-brainhub
Even such an example works though slower. ``` ```
@lauirvin Thanks for reporting. Carousel doesn't work with select because it's mostly designed for images. However, if you know how to fix that, you're more than welcome to open a...
@pierzchalatomasz After merging https://github.com/brainhubeu/react-carousel/pull/177, the order is the following: ``` 1: [1, 2] 2: [2, 3] 3: [3, 4] 4: [4, 5] 5: [5] ```  So I...
@Lukasz-pluszczewski do you mean this situation or I have some incorrect params? ```js foo-1 foo-2 foo-3 foo-4 foo-5 ``` for 5 slides:  for 6 slides: ![ezgif com-video-to-gif...
@nabeelvalley Thanks for this proposal but I cannot understand it clearly. Could you paste an example code (applicable in the clickable docs if possible), some screenshots and more precisely describe...
@nabeelvalley Thanks. Could you also paste some example code?
@nabeelvalley code for reproduction
Thanks @nabeelvalley this example is very useful.
This doesn't work as well: ``` module.exports = { method: 'get', path: '/', validate: { query: Joi.object({ search: Joi.string(), sort: Joi.object().default({ 'name': 1 }), }).optional(), }, handler: async (ctx) =>...
It's because Joi needs to obtain a query object ``` const Joi = require('joi'); const schema = { query: Joi.object({ search: Joi.string(), sort: Joi.object().default({ 'name': 1 }), }).optional(), foo: Joi.string(),...