Daniil

Results 10 comments of Daniil

I have the same issue when simply moving to a new page in SPA. Icons are not being rendered only if I reload the page

> I have the same issue after the code has been minified by Angular (using internally TerserPlugin). All constructors are renamed to minified letters. > I don't know how to...

> There is a reset call on the mock: > https://github.com/florinn/typemoq#reset-mocks > E.g. > > ``` > const mockRouter: TypeMoq.IMock = TypeMoq.Mock.ofType(); > > mockRouter.reset(); > ``` I'm facing the...

@Integralist, I faced same issue, just install graphviz to your system, depending on OS you have to add dot.exe directory to PATH variable. After reloading command terminals opened everything worked...

@spatran137, Can you give some details? Not sure what problem you have. If you installed graphviz - then just find the directory path, where the dot.exe exists and add it...

> import { DynamoDBClient } from "@aws-sdk/client-dynamodb"; could you please clarify which library versions are you using? I tried this approach, but I get type errors

> If anyone else is seeing this: I've heard reports that the swc minifier does not have this bug, and it's the default minifier in the latest version of next.js....

I've checked some more details: ``` Serverless: 11003 Range Error -------------------------------------------- RangeError: Maximum call stack size exceeded ``` fails in following code: ```javascript this.serverless.cli.log(files.length); const contents = Flatten( await Map(...

worked around that for now with: ```bash npx --node-arg=--stack-size=4096 sls deploy ``` Seems that there's too many files included into the final package

I have a workaround that works for me, but maybe this still has to be fixed somehow To fix it I just use css vars instead of functions ```typescript paddingBottom:...