Jonas Carlbaum

Results 20 comments of Jonas Carlbaum

That's not the only package that needs update... ``` Low Prototype Pollution Package lodash Patched in >=4.17.5 Dependency of webpack-svgstore-plugin [dev] Path webpack-svgstore-plugin > lodash More info https://npmjs.com/advisories/577 High Prototype...

Or is it your `_fixIds` in [utils](https://github.com/mrsum/webpack-svgstore-plugin/blob/develop/src/helpers/utils.js) that is doing this and you need to add `_fixClasses` or something to make this work? When testing it seems that I `prefixIds`-plugin...

I tried a hacky (not perfect at all) version, added a `_fixClassNames` directly in my `node_modules/webpack-svgstore-plugin/src/helpers/utils.js`, as a proof-of-concept. ``` /** * Fix classes * @param {object} obj * @param...

I have a working fix, as described here. https://github.com/episerver/Foundation/issues/895#issuecomment-2173627151

@lunchin can you check out my comment https://github.com/episerver/Foundation/issues/895#issuecomment-2173627151 These small changes in the `SettingsService.cs` file makes it work. Works in production site in DXP (in our case CMS11, but seems...

My fix was mostly solved by updating `GetSiteSettings`-method like this. _(splitted it up for simplification, can be optimized)_ ``` public SettingsBase GetSiteSettings(Guid? siteId = null) where T : SettingsBase {...

Hi, thanks for answering. Checking resolutions etc. and calling or not calling roto() is what I do — and it's no problems on most devices, where you either use or...

Using `eslint` that is dependent on `ajv` and I get alot of these deprecation warnings — which is really annoying. Really looking forward for this to be solved...

So, guess that means that for yarn 4.5+ I need to do? ```json { "resolutions": { "ajv": "8.17.1" } } ``` will try it out soon…