Matt Purland
Matt Purland
That was the aim, sorry if I wasn't very clear. The modification allows cmb2-conditionals (in its entirety) to be manually included in a theme, as well as being installed as...
@AsimTariq did you ever overcome this issue? I'm experiencing the exact same problem
If it helps anyone, I'm getting the following in the process error log (%HOMEPATH%\AppData\Local\Temp\sf_proc_00.err) > 'git' is not recognized as an internal or external command, operable program or batch file....
I've found a workaround: ``` import { columns } from "svelte-simple-datatables/src/stores/columns.js"; import { data } from 'svelte-simple-datatables/src/stores/data.js' ... function sortTable() { // Filter to get current column used for sorting...
> [RobinHerbots](https://github.com/RobinHerbots) @RobinHerbots . > > > I am wondering wheter I should remove the support for the textarea. The revalidation makes the input slow. But using a mask on...
I gave this a go, see my PR: https://github.com/boxybird/inertia-wordpress/pull/21
I've figured out a workaround using the onKeyDown event: ``` onKeyDown: (e) => { if(e.which == 13) { e.target.value = e.target.value + "\r"; return false; } } ```
Sorry, it looks like this still isn't working (I'm testing with 5.0.9-beta.32). Please see updated codepen
Updated workaround for those interested ``` if(e.which == 13) { let value = e.target.value, index = e.target.selectionStart; e.target.value = value.slice(0, index) + "\r" + value.slice(index); e.target.setSelectionRange(index + 1, index +...
I'm having the same issue, but the error on the frontend is slightly different: `TypeError: Cannot read properties of undefined (reading 'feedback')` The 400 (Bad Request) response is: `{"detail":"Invalid statsPeriod:...