Kilian Finger

Results 238 comments of Kilian Finger

After some research I figured the `touchmove` event isn't triggered at all down in the area of the bottom toolbar. There is probably nothing to be done until it's fixed......

@mhenrixon there is a v1.1.5 which works fine for me (rails v6.1.3.1, ruby v3.0.1). See here it was committed just before release: https://github.com/lynndylanhurley/devise_token_auth/compare/v1.1.4...v1.1.5 In my Gemfile it's just: ``` gem...

@mhenrixon which rails version are you on? See here: https://github.com/lynndylanhurley/devise_token_auth/commit/5b2ef6c2d394894d10ffd87a85b633570ee6c4c8 > Rails 6.1 generates a deprecation warning since connection_config will be removed from Rails 6.2.

I'm not sure if my problem is connected, I'm experiencing something similar with `@ApiQuery`, the following only produces a singular enum query param: ```ts @ApiQuery({ name: 'fieldName', required: false, isArray:...

Just for anyone else looking for a solution, I'm currently using the `MicroserviceHealthIndicator` from `@nestjs/microservices` likes this: ```ts () => this.microserviceHealthIndicator.pingCheck('redis', { transport: Transport.REDIS, options: { // Set your options...

I'm currently using the following workaround: ```tsx inputRef={ref as RefCallback} ``` Looks like a problem of the typing of `inputRef` when combined with `forwardRef`? Except the currently broken docs of...

Here is a quickly hacked example for using confetti with probably any kind of node: ```js const cookie = document.createElement('span'); cookie.innerText = '🍪'; cookie.style.fontSize = '24px'; document.querySelector('.js-cookies').addEventListener('click', function (e) {...

I was generally thinking, if Exception Filter is the better solution? The current approach submits all errors and I'm not looking forward setting up a black/whitelist of errors I (don't)...

Thanks @ericjeker for taking a thought about this twice! I've yet not made up my mind, what's the best approach. Actually there are some rare cases I even want the...

Here is the OpenAPI Spec we use https://gist.github.com/KiwiKilian/1f9d35544a7e9312bb74bd75a889df9c. I don't know anything about spark, therefore I could only contribute the manually created spec. But at least some Swagger UI would...