From 35d4b5b54598b11daee30895b3526a7c827d5119 Mon Sep 17 00:00:00 2001 From: qin_jun_yan Date: Thu, 4 Jun 2020 09:29:12 +0800 Subject: [PATCH] In the case of no data, the traceability of the model has no data and the text is revised down. --- mindinsight/ui/src/views/train-manage/model-traceback.vue | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/mindinsight/ui/src/views/train-manage/model-traceback.vue b/mindinsight/ui/src/views/train-manage/model-traceback.vue index a2cf2e5..342f477 100644 --- a/mindinsight/ui/src/views/train-manage/model-traceback.vue +++ b/mindinsight/ui/src/views/train-manage/model-traceback.vue @@ -89,7 +89,7 @@ limitations under the License.
+ v-show="!noData && !showEchartPic">
@@ -1198,7 +1198,9 @@ export default { } }, ) - .catch(() => {}); + .catch(() => { + this.noData = true; + }); }, /** -- GitLab