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.
1 parent 6b4adfd commit 73b1e94Copy full SHA for 73b1e94
packages/react-sdk-components/src/components/infra/Reference/Reference.tsx
@@ -38,6 +38,11 @@ export default function Reference(props: ReferenceProps) {
38
pageReference: context && context.startsWith('@CLASS') ? '' : context
39
});
40
41
+ if (referenceConfig.inheritedProps && referenceConfig.inheritedProps.length > 0) {
42
+ const inheritedProps = pConnect.getInheritedProps();
43
+ referenceConfig.inheritedProps = Object.keys(inheritedProps).map(prop => ({ prop, value: inheritedProps[prop] }));
44
+ }
45
+
46
viewComponent.props.getPConnect().setInheritedConfig({
47
...referenceConfig,
48
readOnly,
0 commit comments