Browse Source

UI fixed an issus where the width of dimension text box on the tensor

page is abnormal
tags/v1.1.0
xiayifan 5 years ago
parent
commit
9305c4eadb
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      mindinsight/ui/src/components/debuggerGridTableSimple.vue

+ 4
- 2
mindinsight/ui/src/components/debuggerGridTableSimple.vue View File

@@ -43,7 +43,7 @@ limitations under the License.
</div>
<div v-for="(item, itemIndex) in filterArr"
:key="itemIndex">
<el-input class="filter-input"
<el-input class="filter-input long-input"
:class="item.showError ? 'error-border' : ''"
v-model="item.model"></el-input>
<span class="input-behind"
@@ -694,9 +694,11 @@ export default {
}
}
.filter-input {
width: 120px;
text-align: center;
}
.long-input {
width: 120px;
}
.input-behind {
padding: 0 5px;
}


Loading…
Cancel
Save