修改禅道已知bug

This commit is contained in:
qq787203167
2022-08-23 16:15:45 +08:00
parent 1cb36f67c7
commit 6a6abf7e5d
@@ -26,7 +26,7 @@
<a-select-option v-for="(item, key) in projectNameList"
:key="key"
:value="item.value">
<span style="display: inline-block;width: 100%" :title=" item.name ">
<span class="selectText" :title=" item.name ">
{{ item.name}}
</span>
</a-select-option>
@@ -78,7 +78,7 @@
<a-select-option v-for="(item, key) in problemTypeList"
:key="key"
:value="item.id">
<span style="display: inline-block;width: 100%" :title="item.problemLabel ">
<span class="selectText" :title="item.problemLabel ">
{{item.problemLabel}}
</span>
</a-select-option>
@@ -605,4 +605,13 @@
::v-deep .ql-snow .ql-picker {
height: 36px;
}
.selectText {
width: 100%;
display: inline-block;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
word-break: break-word;
}
</style>