Skip to content

Commit

Permalink
Use ellipsis in the signal name list on case page to avoid format iss…
Browse files Browse the repository at this point in the history
…ues (#4089)
  • Loading branch information
wssheldon authored Dec 6, 2023
1 parent 8b0fd51 commit 9f9c4d7
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<v-virtual-scroll :items="signalInstances" height="828" class="pt-2">
<template #default="{ item }">
<div class="d-flex align-center">
<span style="font-size: 0.8rem" class="pl-8">
<span class="pl-8 signal-name">
{{ item.signal.name }}
</span>
<span class="pl-1 dispatch-text-paragraph">
Expand Down Expand Up @@ -110,4 +110,11 @@ watch(
border: 0.5px solid rgb(216, 216, 216) !important;
border-radius: 8px !important;
}
.signal-name {
font-size: 0.8rem;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
</style>

0 comments on commit 9f9c4d7

Please sign in to comment.