Mickael Bonfill

Results 10 comments of Mickael Bonfill

Same problem here on OSX Mojave, AZERTY French keyboard layout. EDIT : I saw qmltermwidget has a **mac-vkcode.h** file with ANSI virtual keys from `/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/Headers/Events.h` In this file there's an...

Ok i found the issue, Django doesn't use MIDDLEWARE_CLASSES but MIDDLEWARE property in settings now. I just inserted `'tenant_schemas.middleware.TenantMiddleware'` as first element of my MIDDLEWARE list and the good urls...

It seems to be a synchronization problem, what I can see is, all my scripts submit draw in the queue, then when the dummy gizmos (from `GizmosInstance.Update()` ) is submitted,...

`autoAddBaseUrl` seems to do the trick yes, thank you! I don't think the property `autoAddBaseUrl` is documented : https://docusaurus.io/docs/api/themes/configuration#navbar-link

I just encountered the same issue. In my case I use a custom format and the formatter needs a specific way to resolve token values. Basically I would need to...

I agree that I could define `#FFF` and `#000` as reference from properties inside the `global` set. The problem is more to avoid deduplication of properties. Two ways to fix...

Any updates on this issue? I am currently trying to convert an OpenAPI v3 specification and here's the result : ```ps $ gnostic.exe --resolve-refs --go-generator-out=toto spec.json panic: runtime error: invalid...

I agree too, I just wrote a post on stackoverflow and now I see what is my problem... Something like this would be good : ``` passport.use('local-login', new LocalStrategy({ usernameField:...

I don't know for you but in 2.2.0 `useActiveDocContext(props.docsPluginId)` always returns an Object, I had to check if the property `activeDoc` is actually defined inside this object : ```jsx import...