Michael Windell

Results 7 comments of Michael Windell

I ran into the issue while including `.json` files for my data. I tracked the issue down to **require cache** and solved it using module https://www.npmjs.com/package/clear-require. Simply do the following...

@axwalker Your solution - rounding to integers didn't seem to work for me. Solution I came up with (ugly but force fixes the issue) was to simply overwrite the `setDataMax`...

@jedrzejchalubek - Any chance of putting this in as a component which can be enabled/disabled via settings?

I'm handling this way: ```ts import { Delete, HttpCode, HttpStatus } from '@nestjs/common'; @Delete(':id') @HttpCode(HttpStatus.NO_CONTENT) ... ``` Would be nice if `@Delete` default was `204` with the option to override

+1 Current workaround: @media screen and (-moz-images-in-menus:0)

I needed to reset the scroller when using a search input and instead of using `ref` I fixed it another way by increasing the `key` when needed. ``` const [scrollKey,...

I had to add a `.d.ts` file with contents: `declare module 'class-validator/cjs/metadata/ValidationMetadata';` in order to bypass your error @wmvm0 and then used a `@ts-ignore` for the import. Ugly but works...