moltco
moltco
Is it possible to check for permissions on a generic query that uses DjangoFilterConnectionField to list all records of a certain Type. For example I want only super admin to...
If I add to join-monster/dist/query-ast-t-sql-ast/index.js:116 the following line to ensure field.args are an interable array ``` if (field && field.args && !Array.isArray(field.args)) field.args = [field.args]; // sqlASTNode.args = (0, _values.getArgumentValues)(field,...
Whilst I could attach breakpoints (with missing link.js.map) the code presented in debugger was off. It turned out the .tsconfig was missing "sourceMap": true I used the default create-app script...
Whilst I could attach breakpoints (with missing link.js.map) the code presented in debugger was off. It turned out the .tsconfig was missing "sourceMap": true I used the default create-app script...
Can you expand why it crashes? I use Nextjs with AutoForm (version from month ago but this was also based on react-hook-form) and it generally works with Nextjs 13, 14,...
I like this but I would keep the ability to insert fieldConfig separately as well (as it is today) and maybe have a merging utility to help alter fieldConfig/zod at...
@leomerida15 - something like that. What I dislike about zod is that it is quite hard (too many steps) to get to schema and manipulate it. It seems to be...
I have done the same / using state. Now glancing at the code I have used AutoForm values prop to pass 'current' values so my recollection of issues around setting...
Also, the date-picker.json file is not available in the main brach either so I guess it must have been deleted by accident?
Sure but then you have sub-projects like AutoForm that rely on existence of date-picker.tsx which lead me to believe that there was a 'default' implementation. In any case, I think...