Skip to content

Commit 763f5dc

Browse files
author
奇淼(piexlmax
authored
Merge pull request #62 from HXSecurity/develop
fix:The select option excess length is displayed as a point
2 parents 9a45444 + cae604c commit 763f5dc

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

src/views/project/VulListComponent.vue

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -737,7 +737,12 @@ export default class VulListComponent extends VueBase {
737737
}
738738
739739
.selectOption {
740+
display: inline-block;
741+
width: 80%;
740742
color: #4b99f1;
743+
text-overflow: ellipsis;
744+
white-space: nowrap;
745+
overflow: hidden;
741746
font-size: 14px;
742747
}
743748

src/views/vuln/VulnList.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -862,7 +862,7 @@ export default class VulnList extends VueBase {
862862
863863
.selectOption {
864864
display: inline-block;
865-
width: 100%;
865+
width: 80%;
866866
text-overflow: ellipsis;
867867
white-space: nowrap;
868868
overflow: hidden;

0 commit comments

Comments
 (0)