Jakob Schröter

Results 13 comments of Jakob Schröter

We're also trying getting Preact 8.2.7 and DraftJS 0.10.5 working together; but still having issues with focus and cursor. Already tried some workarounds but without success. Someone has some news...

Hallo, ich und andere haben das gleiche Problem, ich antworte mal hier: https://github.com/rdmtc/node-red-contrib-ccu/issues/154

Hello, I'm having the same problem (with HmIP-FBL), did you find a solution in the meantime? I think the reason behind it is that the actor only does something when...

...figured it out, thanks for the hint about COMBINED_PARAMETER, this is way nicer as my script. When creating a program in CCU3 it actually shows how the COMBINED_PARAMETER works (it's...

What is currently the best practice in terms of logging in Nuxt3? In Nuxt2 we created our own consola instance and made it accessible from everywhere in `global.consola`. We now...

> we are using the logger provided by `@nuxt/kit` within our Nuxt modules. See https://nuxt.com/docs/api/kit/logging for details. I tried that too, but unfortunately it only works in the module context....

having exactly the same issue: the docs say passing a payload works, but it doesn't.

I worked around it by mocking Consola in the tests, maybe it helps someone: jest.config.js ``` module.exports = { moduleNameMapper: { consola: "/test/unit/test-utils/mockConsola.js" } }; ``` mockConsola.js ``` // mocking...

Maybe related: I'm also having issues using consola v3 with Nuxt2 + Nuxt Bridge. Dev mode works fine, building as well. But when I run `nuxi start`, I get: ```...