diff --git a/mindinsight/ui/src/mixins/debuggerMixin.vue b/mindinsight/ui/src/mixins/debuggerMixin.vue
index ff083710..a2403813 100644
--- a/mindinsight/ui/src/mixins/debuggerMixin.vue
+++ b/mindinsight/ui/src/mixins/debuggerMixin.vue
@@ -1560,6 +1560,7 @@ export default {
lists: [],
selected: false,
id: hit.node_name,
+ graph_name: hit.graph_name,
};
if (hit.tensors && hit.tensors.length) {
hit.tensors.forEach((i) => {
@@ -1636,6 +1637,8 @@ export default {
if (this.graphFiles.value === this.$t('debugger.all')) {
delete params.params.graph_name;
params.params.name = `${this.watchPointHits[key].graph_name}/${name}`;
+ } else {
+ this.graphFiles.value = this.watchPointHits[key].graph_name;
}
this.watchPointHits.forEach((val, index) => {
if (key === index) {
@@ -1662,8 +1665,8 @@ export default {
}
this.querySingleNode(
JSON.parse(JSON.stringify(graph)),
- name,
- false,
+ params.params.name,
+ true,
);
}
},
diff --git a/mindinsight/ui/src/views/debugger/debugger.vue b/mindinsight/ui/src/views/debugger/debugger.vue
index efc781cc..35424013 100644
--- a/mindinsight/ui/src/views/debugger/debugger.vue
+++ b/mindinsight/ui/src/views/debugger/debugger.vue
@@ -317,11 +317,11 @@ limitations under the License.
:class="{collapse: collapseTable}">
@@ -1616,6 +1616,12 @@ export default {
path: '/summary-manage',
});
},
+ rightCollapse() {
+ this.collapseTable = !this.collapseTable;
+ setTimeout(() => {
+ this.initSvg(false);
+ }, 500);
+ },
},
destroyed() {
window.removeEventListener(