form: fix popover, improve form types

This commit is contained in:
dswbx
2025-02-08 15:43:02 +01:00
parent 3fa682bfe1
commit f7e6928dba
9 changed files with 56 additions and 49 deletions
@@ -31,7 +31,7 @@ export const ArrayField = ({
onChange={(e: any) => {
// @ts-ignore
const selected = Array.from(e.target.selectedOptions).map((o) => o.value);
setValue(pointer, selected);
setValue(ctx.path, selected);
}}
/>
</FieldWrapper>