Flo
Flo
Hello, we ran into the mentioned bug and wondered if there's anything preventing this PR from being merged?
Had a similar Problem. Looking through the closed issues, I sumbled across [this reply](https://github.com/agentejo/CockpitQL/issues/2#issuecomment-350392925) It suggest to set the `populate` parameter: ``` query { allCategories(populate:1) { _id, Subcategories { Name...
Hi, I've had issues getting my Board to run and saw this issue. The workaround used by @warmans worked for me as well. The Board name is indeed `ARDUINO_AVR_NANO_EVERY`. The...
Did you manage to get it working in the meantime? The output of typescript-string-operations targets ES2022. It seems like the the `source-map-loader` cannot handle this kind of "up-to-date" JavaScript... What...
Mhm, I think this wouldn`t work for browser enviroments. Maybe something like this would match your requirement, but work in both environments? https://github.com/p2227/universal-eol/blob/master/eol.js?
Maybe [Intl.NumberFormat](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/NumberFormat) would suffice as a lightweight solution. ```javascript console.log(new Intl.NumberFormat().format(123456.789)) ``` outputs (`de`) ``` "123.456,789" ```