Skip to content

Commit

Permalink
Merge pull request #62 from HXSecurity/develop
Browse files Browse the repository at this point in the history
fix:The select option excess length is displayed as a point
  • Loading branch information
奇淼(piexlmax authored Sep 1, 2021
2 parents 9a45444 + cae604c commit 763f5dc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions src/views/project/VulListComponent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -737,7 +737,12 @@ export default class VulListComponent extends VueBase {
}
.selectOption {
display: inline-block;
width: 80%;
color: #4b99f1;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
font-size: 14px;
}
Expand Down
2 changes: 1 addition & 1 deletion src/views/vuln/VulnList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -862,7 +862,7 @@ export default class VulnList extends VueBase {
.selectOption {
display: inline-block;
width: 100%;
width: 80%;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
Expand Down

0 comments on commit 763f5dc

Please sign in to comment.