diff --git a/mindinsight/ui/src/components/multiselectGroup.vue b/mindinsight/ui/src/components/multiselectGroup.vue index ff3970f7..6c5ee3b3 100644 --- a/mindinsight/ui/src/components/multiselectGroup.vue +++ b/mindinsight/ui/src/components/multiselectGroup.vue @@ -49,9 +49,12 @@ limitations under the License. :content="item.label" placement="top"> - + v-if="item.checked && item.loading==='NOT_IN_CACHE'"> + {{item.label}} @@ -83,9 +86,12 @@ limitations under the License. :content="item.label" placement="top"> - + + {{item.label}} diff --git a/mindinsight/ui/src/locales/en-us.json b/mindinsight/ui/src/locales/en-us.json index 2c25c9ba..45391adb 100644 --- a/mindinsight/ui/src/locales/en-us.json +++ b/mindinsight/ui/src/locales/en-us.json @@ -143,6 +143,7 @@ "invalidId": "Invalid training job.", "summaryDirPath": "Summary path:", "loadingTip": "Loading...", + "waitLoading": "waiting to be loaded", "switchTitle": "The Computational Graph and Data Graph modules do not support auto refresh." }, "scalar": { @@ -450,7 +451,6 @@ "gridAccuracy": "Decimal places are reserved.", "inCorrectInput": "Invalid input.", "gridTableNoData": "No data in the table.", - "cache": "CACHING", "value": "Value", "dimsFilterInputTitle": "Dimension Selection", "dimsFilterInputTip": "The dimension value can be a specific index (consistent with the Python index meaning and supporting negative signs) or a colon (:) that indicates all values of the current dimension." diff --git a/mindinsight/ui/src/locales/zh-cn.json b/mindinsight/ui/src/locales/zh-cn.json index 882c954e..e4312645 100644 --- a/mindinsight/ui/src/locales/zh-cn.json +++ b/mindinsight/ui/src/locales/zh-cn.json @@ -143,6 +143,7 @@ "invalidId": "无效的训练作业", "summaryDirPath": "训练日志路径:", "loadingTip": "加载中", + "waitLoading": "待加载", "switchTitle": "计算图和数据图模块不支持自动刷新" }, "scalar": { @@ -449,7 +450,6 @@ "gridAccuracy": "保留小数位", "inCorrectInput": "无效输入", "gridTableNoData": "表格无数据", - "cache": "正在加载", "value": "数值", "dimsFilterInputTitle": "维度选择", "dimsFilterInputTip": "维度输入值可以是具体的索引(和Python的索引含义一致,支持负号)或者冒号\":\",其中冒号\":\"表示当前维度的所有值" diff --git a/mindinsight/ui/src/views/train-manage/training-dashboard.vue b/mindinsight/ui/src/views/train-manage/training-dashboard.vue index f90ab428..7a373f07 100644 --- a/mindinsight/ui/src/views/train-manage/training-dashboard.vue +++ b/mindinsight/ui/src/views/train-manage/training-dashboard.vue @@ -21,9 +21,10 @@ limitations under the License.