修改禅道已知bug
This commit is contained in:
+11
-2
@@ -26,7 +26,7 @@
|
|||||||
<a-select-option v-for="(item, key) in projectNameList"
|
<a-select-option v-for="(item, key) in projectNameList"
|
||||||
:key="key"
|
:key="key"
|
||||||
:value="item.value">
|
:value="item.value">
|
||||||
<span style="display: inline-block;width: 100%" :title=" item.name ">
|
<span class="selectText" :title=" item.name ">
|
||||||
{{ item.name}}
|
{{ item.name}}
|
||||||
</span>
|
</span>
|
||||||
</a-select-option>
|
</a-select-option>
|
||||||
@@ -78,7 +78,7 @@
|
|||||||
<a-select-option v-for="(item, key) in problemTypeList"
|
<a-select-option v-for="(item, key) in problemTypeList"
|
||||||
:key="key"
|
:key="key"
|
||||||
:value="item.id">
|
:value="item.id">
|
||||||
<span style="display: inline-block;width: 100%" :title="item.problemLabel ">
|
<span class="selectText" :title="item.problemLabel ">
|
||||||
{{item.problemLabel}}
|
{{item.problemLabel}}
|
||||||
</span>
|
</span>
|
||||||
</a-select-option>
|
</a-select-option>
|
||||||
@@ -605,4 +605,13 @@
|
|||||||
::v-deep .ql-snow .ql-picker {
|
::v-deep .ql-snow .ql-picker {
|
||||||
height: 36px;
|
height: 36px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.selectText {
|
||||||
|
width: 100%;
|
||||||
|
display: inline-block;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
word-break: break-word;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
Reference in New Issue
Block a user