fix(场景自动化): 修复场景步骤最大化后推荐断言 问题
This commit is contained in:
parent
2c3392bae4
commit
2a365bd210
|
@ -487,8 +487,10 @@
|
|||
},
|
||||
suggestClick(node) {
|
||||
this.response = {};
|
||||
if (node.parent && node.parent.data.requestResult) {
|
||||
if (node && node.parent && node.parent.data.requestResult) {
|
||||
this.response = node.parent.data.requestResult;
|
||||
} else if (this.selectedNode) {
|
||||
this.response = this.selectedNode.data.requestResult;
|
||||
}
|
||||
},
|
||||
showAll() {
|
||||
|
|
Loading…
Reference in New Issue