PhilFlash

Results 6 comments of PhilFlash

Fix for me in version 0.1.90 See release note [https://github.com/embedchain/embedchain/releases/tag/0.1.90](https://github.com/embedchain/embedchain/releases/tag/0.1.90)

Hi, see #931 For ngx-charts and Angular14 and 15, see my pull-request https://github.com/swimlane/ngx-charts/pull/1846 In package.json, I use: "@swimlane/ngx-ui": "^44.4.0", "ajv": "6.12.6", Philippe

The bug is in file src/lib/fast-svg.component.ts line 185. `if (cache.name.includes(this.name)) {` For first time, cache name is : #suspense If name is 'us', the condition is true => #suspense.include('us') If...

I propose to replace in file src/lib/fast-svg.component.ts line 185 `if (cache.name.includes(this.name)) {` by `if (cache.name === ('#'+this.name)) {`

@shadow1349 In your basic reproduction, in tsconfig.json, set: ``` "target": "ES2022" ... "module": "preserve" ``` for preserve, see [https://devblogs.microsoft.com/typescript/announcing-typescript-5-4/#support-for-require-calls-in---moduleresolution-bundler-and---module-preserve](https://devblogs.microsoft.com/typescript/announcing-typescript-5-4/#support-for-require-calls-in---moduleresolution-bundler-and---module-preserve) and all is ok.

For Angular 17, PR #1943 For Angular 18, PR #1972