Skip to content

Commit 8ffa43a

Browse files
committed
backup
1 parent 064f30e commit 8ffa43a

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed
460 KB
Binary file not shown.

packages/rxeditor/react-core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rxdrag/react-core",
3-
"version": "0.6.9",
3+
"version": "0.6.10",
44
"module": "index.ts",
55
"files": [
66
"dist"

packages/rxeditor/react-core/src/ComponentTreeWidget/ComponentDesignerView.tsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,7 @@ export const ComponentDesignerView = memo((props: { nodeId: string }) => {
6464
</Component >
6565
} else if (behavior?.droppable()) {
6666
return <Component ref={!behavior?.noRef() ? handleRef : undefined} {...realProps}>
67-
{!behavior.noPlaceholder() && !node.meta.childrenText && <PlaceHolder />}
68-
{node.meta.childrenText}
67+
{!behavior.noPlaceholder() && <PlaceHolder />}
6968
</Component>
7069
} else {
7170
return <Component ref={!behavior?.noRef() ? handleRef : undefined} {...realProps} />

0 commit comments

Comments
 (0)