diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json index 2993714bb..233d9fd26 100644 --- a/npm-shrinkwrap.json +++ b/npm-shrinkwrap.json @@ -1,12 +1,12 @@ { "name": "@gisce/react-ooui", - "version": "1.1.17", + "version": "1.1.18", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@gisce/react-ooui", - "version": "1.1.17", + "version": "1.1.18", "dependencies": { "@ant-design/plots": "^1.0.9", "@gisce/ooui": "^0.17.12", diff --git a/package.json b/package.json index 7fea30ab9..8b78fa081 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@gisce/react-ooui", - "version": "1.1.17", + "version": "1.1.18", "files": [ "dist", "src", diff --git a/src/widgets/views/Form.tsx b/src/widgets/views/Form.tsx index f3527dbb3..34ef494aa 100644 --- a/src/widgets/views/Form.tsx +++ b/src/widgets/views/Form.tsx @@ -126,7 +126,8 @@ function Form(props: FormProps, ref: any) { const responsiveBehaviour = containerWidth < WIDTH_BREAKPOINT; const formContext = useContext(FormContext) as FormContextType; - const { activeId: parentId } = formContext || {}; + const { activeId: parentId, getPlainValues: getParentPlainValues } = + formContext || {}; const actionViewContext = useContext( ActionViewContext