Carl Topham
Carl Topham
I would like to second this request if possible, or at least some hints on how to get it to work with 2.1 as an interim :) Thanks
Same issue. Fix worked for me, although I used the following as I felt it looked cleaner for me 👍 ``` import AceEditor from 'react-ace'; ... ```
> how to change `referenceBehavior ` have the same problem Add the following option under the `documentInternationalization` plugin config: ``` weakReferences: true ``` e.g. ``` documentInternationalization({ supportedLanguages: [ { id:...
I've had the same issue. Turns out that my package.json had `"type": "module",` in it, which wasn't needed. Removing this has fixed the issue. I think the built netlify functions...
Same here. > Also get a similar error when deleting both translations from the Translations > Manage Translations panel: `Error: Cannot read properties of undefined (reading 'length')` I also get...
@williamiommi This is fantastic. Works like a charm Just a note that there is a type between `unmappedFieldGroup` and `unmappedFieldsGroup`... Note the extra `s` on `Fields`.
For reference to create a `floor()` I am using `string::split(string(myNumber), ".")[0]` which works, but returns a string, not a number. I can't make a `ceil()` alternative because I need the...
I'm in a similar situation and I'd like a solution too. My `default` language is `en` and I have some posts with a `fr` translation. This works great where there...
I have this issue also.
Currently I have added the following to my test to get it to retrieve the coverage from the `window.__coverage__` This is in a test step ``` await test.step(`Collect the coverage`,...