Browse Source

UI traceback table summary path add line break

tags/v1.1.0
weiyanxi 5 years ago
parent
commit
0773394bda
2 changed files with 4 additions and 4 deletions
  1. +2
    -2
      mindinsight/ui/src/views/train-manage/data-traceback.vue
  2. +2
    -2
      mindinsight/ui/src/views/train-manage/model-traceback.vue

+ 2
- 2
mindinsight/ui/src/views/train-manage/data-traceback.vue View File

@@ -161,8 +161,8 @@ limitations under the License.
:label="table.columnOptions[key].label" :label="table.columnOptions[key].label"
:sortable="sortArray.includes(table.columnOptions[key].label) ? 'custom' : false" :sortable="sortArray.includes(table.columnOptions[key].label) ? 'custom' : false"
:fixed="table.columnOptions[key].label === text ? true : false" :fixed="table.columnOptions[key].label === text ? true : false"
min-width="200"
show-overflow-tooltip>
:min-width="table.columnOptions[key].label === text ? 250 : 200"
:show-overflow-tooltip="table.columnOptions[key].label === text ? false : true">
<template slot="header" <template slot="header"
slot-scope="scope"> slot-scope="scope">
<div class="custom-label" <div class="custom-label"


+ 2
- 2
mindinsight/ui/src/views/train-manage/model-traceback.vue View File

@@ -376,8 +376,8 @@ limitations under the License.
:prop="key" :prop="key"
:label="table.columnOptions[key].label" :label="table.columnOptions[key].label"
:fixed="table.columnOptions[key].label === text ? true : false" :fixed="table.columnOptions[key].label === text ? true : false"
show-overflow-tooltip
min-width="150"
:show-overflow-tooltip="table.columnOptions[key].label === text ? false : true"
:min-width="table.columnOptions[key].label === text ? 250 : 150"
sortable="custom"> sortable="custom">
<template slot="header" <template slot="header"
slot-scope="scope"> slot-scope="scope">


Loading…
Cancel
Save