Chris Gat

Results 11 comments of Chris Gat

@3DJakob yup, that works too. Updated. This prop aside (which I think is a valid tool to tune the rotation for bigger cards), I do think there is an underlying...

@rathpc I'm guessing your comment is a bit stale now, but for anyone interested, it does seem like the props for the tooltip are exported in the `.d.ts` file. This...

Not sure if this will be helpful for others, but I was running into this issue when using `Transition` from headlessui. The `TextArea` in my case was deeply nested. I...

As a workaround for this limitation, our team was considering creating a lambda that receives sqs jobs, converts them into http requests, and sends them to an additional AppRunner instance...

hmmm, actually, calling `store_meta` directly on the uploader seems to trigger a `cache` (via the `manipulate` in get_dimensions), which causes another call to `store_meta` via the `retrieve_from_cache` callback. Obviously I...

I'm seeing this too (not using angular-google-maps though). Note the example shown on the README seems wrong. Watching 'myPosition.position' is being watch by the scope, but that is not a...

``` import { initialize, mswDecorator } from 'msw-storybook-addon'; if(!global.test) { // only run this in the browser initialize() } ``` @yannbf Am I correct in thinking that this will disable...

@MatthiasWinzeler that's a good call out. FWIW, we did end up switching over to ECS instead (with a similar strategy)

For NestJs 8, I wasn't able to get any of the solutions to work. One solution shown in the NestJs __does__ work ``` CacheModule.register({ store: redisStore, // Store-specific configuration: host:...