Sergiobop

Results 23 comments of Sergiobop

@LeeLenaleee It's related to this line in the migration guide... right? https://www.chartjs.org/docs/latest/migration/v4-migration.html > Charts don't override the default tooltip callbacks, so all chart types have the same-looking tooltips.

This still happens on Angular 17 Setup to fail: - In your tsconfig.json add a custom path: ``` ... "paths": { "@app/*": ["app/*"], ... ``` - Then use it in...

I don't know if it is just me, but after this is released, every time the model command is ran, some generic annotations are being duplicated even if they are...

This bug is present everywhere, not only in your case. It's even on the stackblitz examples of the select component guide: https://material.angular.io/components/select/overview When you open the first example in stackblitz,...

https://github.com/iharbeck/ngx-virtual-scroller is the way THANKS @iharbeck

Thanks @panoti , @angular-ex/uploader is the way! Any plans to update it to NG16?

Thanks @panoti , you are awesome

This bug is annoying. Everytime i generate the model phpdocs i just replace `null|null` to `null` in my IDE

I fixed this bug on my local ModelsCommand. Everywhere i saw something like: ``` if ($nullable) { $newType .= '|null'; } ``` I changed it with: ``` if ($nullable &&...