Ondřej Švanda

Results 77 comments of Ondřej Švanda

If I understand correctly, and as others have already said - this requirement can be fully satisfied using [openadpi-generator](https://openapi-generator.tech/). It generates methods based on the `operationId` in swagger, which can...

I was also looking for this functionality, so I spent some time researching and testing and the result is this package: https://github.com/Papooch/nestjs-cls It would be great if Nest provided some...

If it's still relevant, I figured out a way to make it work. I had the same issue with hooks. The key is to export a *function that returns the...

I also encountered the issue, so I had a look at the source, did some debugging, and found a quick fix by sheer luck. Please see the PR, I'm not...

For the time being, if you require this functionality (like me) until the PR is accepted, you can install the dist branch (with built files) directly from github like so:...

Hi, @bencompton, would you mind reviewing the PR if it's alright? We've been using my fork in production since, so it would be great to have it merged.

For anyone wondering, my problem was that MS Word was sending this header: ``` authentication: Bearer ```` which was triggering a "Not authorized" response (no idea why). I "Fixed" this...

This is a common problem to all select boxes (save for the default one). You can provide your own function to calculate the position yourself: https://vue-select.org/api/props.html#calculateposition Would be nice if...

I guess this is already doable using the `option` slot by passing a custom template.

Actually, I was thinking about it. What is the desired behavior here? Can you select a root node as the choice? Or are those only a separator? Should you be...