Skip to content

Commit 6532c62

Browse files
committed
fix: 修复语法错误
1 parent 997fee7 commit 6532c62

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/plugin-datasource-pane/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,5 +59,5 @@
5959
"traverse": "^0.6.6",
6060
"xstate": "^4.26.0"
6161
},
62-
"homepage": "https://unpkg.com/@alilc/lowcode-plugin-datasource-pane@1.0.1-beta.0/build/index.html"
62+
"homepage": "https://unpkg.com/@alilc/lowcode-plugin-datasource-pane@1.0.1/build/index.html"
6363
}

packages/plugin-datasource-pane/src/components/Forms/form-lazy-obj.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export const FormLazyObj = observer((props: FormLazyObjProps) => {
3131
return Object.keys(schema.properties || {})
3232
.filter((i) => selectedProperties.indexOf(i) === -1)
3333
.map((propertyKey) => ({
34-
label: schema.properties?[propertyKey].title,
34+
label: schema.properties?.[propertyKey].title,
3535
value: propertyKey,
3636
}));
3737
}, [schema, selectedProperties]);

0 commit comments

Comments
 (0)