We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 997fee7 commit 6532c62Copy full SHA for 6532c62
2 files changed
packages/plugin-datasource-pane/package.json
@@ -59,5 +59,5 @@
59
"traverse": "^0.6.6",
60
"xstate": "^4.26.0"
61
},
62
- "homepage": "https://unpkg.com/@alilc/lowcode-plugin-datasource-pane@1.0.1-beta.0/build/index.html"
+ "homepage": "https://unpkg.com/@alilc/lowcode-plugin-datasource-pane@1.0.1/build/index.html"
63
}
packages/plugin-datasource-pane/src/components/Forms/form-lazy-obj.tsx
@@ -31,7 +31,7 @@ export const FormLazyObj = observer((props: FormLazyObjProps) => {
31
return Object.keys(schema.properties || {})
32
.filter((i) => selectedProperties.indexOf(i) === -1)
33
.map((propertyKey) => ({
34
- label: schema.properties?[propertyKey].title,
+ label: schema.properties?.[propertyKey].title,
35
value: propertyKey,
36
}));
37
}, [schema, selectedProperties]);
0 commit comments