We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ea59fde + 36143bc commit f8eb589Copy full SHA for f8eb589
adminforth/modules/restApi.ts
@@ -472,7 +472,8 @@ export default class AdminForthRestAPI implements IAdminForthRestAPI {
472
columns:
473
await Promise.all(
474
resource.columns.map(
475
- async (col, i) => {
+ async (inCol, i) => {
476
+ const col = JSON.parse(JSON.stringify(inCol));
477
let validation = null;
478
if (col.validation) {
479
validation = await Promise.all(
0 commit comments