Skip to content

Commit

Permalink
fix: recipient popover on thread display
Browse files Browse the repository at this point in the history
Signed-off-by: greta <[email protected]>
  • Loading branch information
GretaD committed Sep 18, 2024
1 parent aa8e4e1 commit 1244a69
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/components/RecipientBubble.vue
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,8 @@ export default {
flex-wrap: wrap;
}
.contact-popover {
display: inline-block;
display: flex;
padding: 2px;
&__email {
text-align: center;
Expand Down
7 changes: 5 additions & 2 deletions src/components/Thread.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
</template>
<RecipientBubble v-for="participant in threadParticipants.slice(participantsToDisplay)"
:key="participant.email"
:title="participant.email"
:email="participant.email"
:label="participant.label" />
</Popover>
Expand Down Expand Up @@ -500,8 +501,10 @@ export default {
visibility: hidden;
}
.popover__wrapper {
max-width: 500px;
.v-popper--theme-dropdown.v-popper__popper .v-popper__inner {
height: 300px;
width: 250px;
overflow: auto;
}
.app-content-list-item-star.icon-starred {
Expand Down

0 comments on commit 1244a69

Please sign in to comment.