We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b85128 commit 3b36926Copy full SHA for 3b36926
1 file changed
packages/designer/src/builtin-simulator/node-selector/index.tsx
@@ -1,6 +1,6 @@
1
import { Overlay } from '@alifd/next';
2
import React, { MouseEvent } from 'react';
3
-import { Title } from '@alilc/lowcode-editor-core';
+import { Title, observer } from '@alilc/lowcode-editor-core';
4
import { canClickNode } from '@alilc/lowcode-utils';
5
import './index.less';
6
@@ -18,6 +18,7 @@ export interface IState {
18
19
type UnionNode = INode | null;
20
21
+@observer
22
export default class InstanceNodeSelector extends React.Component<IProps, IState> {
23
state: IState = {
24
parentNodes: [],
0 commit comments