Adrian Oprea
Adrian Oprea
We also encountered a similar issue on our project, and we fixed it without touching the plugin code. I wrote about it here: https://oprea.rocks/blog/bootstrap-datetimepicker-reset Just skip past my crude storytelling...
@proximadata That's probably because it's unable to parse your time properly. What does your full format look? Besides "HH:ii" you probably have your timezone... you need to separate it with...
Here's a recipe that works for me: ```javascript result.data.allContentfulCategory.edges.forEach(({ node: c }) => { const edges = result.data.allContentfulBlogPost.edges.filter(({ node }) => { return node.categories.some(category => category.permalink === c.permalink)) }) createPaginatedPages({...
Do your actual posts have categories added to them? Try logging out the item count in the set, then the length of the `categoryList` array and then the set /...
@ben-eb not sure if my comment is of any use, haven't tried this myself but do you have an `.npmrc` file locally, in your project, or in your home directory,...
@thesubr00t Given that the community of people who use this library is still active I'd say it is. Why are you asking ? Do you need help with any specific...
I think I found a solution for this issue, that doesn't involve modifying the library. I have to test it thoroughly and make sure that it works in all scenarios...
Oh. Totally forgot about this. My schedule has been hectic since then. Let me try to describe it in plain text, here. ## The problem The problem with React Router...
Is there any temporary solution for this? I've yet to find something that points to a solution that works properly. Something like building `cwebp` on the system itself, using `musl`.