mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-23 18:18:12 +00:00
fix: 修复大纲树点击模态框交互异常
This commit is contained in:
parent
152a5b42f7
commit
651e118e3d
@ -106,7 +106,11 @@ export default class TreeTitle extends Component<{
|
|||||||
data-id={treeNode.id}
|
data-id={treeNode.id}
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
if (isModal) {
|
if (isModal) {
|
||||||
|
if (node.getVisible()) {
|
||||||
|
node.document.modalNodesManager.setInvisible(node);
|
||||||
|
} else {
|
||||||
node.document.modalNodesManager.setVisible(node);
|
node.document.modalNodesManager.setVisible(node);
|
||||||
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (node.conditionGroup) {
|
if (node.conditionGroup) {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user