Skip to content

Commit

Permalink
fixup! feat:select existing talk roomfor convesations
Browse files Browse the repository at this point in the history
Signed-off-by: greta <[email protected]>
  • Loading branch information
GretaD committed Jan 8, 2025
1 parent aedacf6 commit 6cf7c40
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/components/Editor/AddTalkModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
class="talk-room-list__item"
@click="selectRoom(conversation)">
<NcAvatar :url="avatarUrl(conversation)"
:size="34"
:size="28"
:disable-tooltip="true" />
<span>{{ conversation.displayName }}</span>
</li>
Expand Down Expand Up @@ -207,9 +207,10 @@ export default {
&__item {
display: flex;
gap: 5px;
gap: calc(var(--default-grid-baseline) * 2);
align-items: center;
padding: 16px;
padding: 6px 6px 6px 9px;
height: 34px;

Check warning on line 213 in src/components/Editor/AddTalkModal.vue

View check run for this annotation

Codecov / codecov/patch

src/components/Editor/AddTalkModal.vue#L212-L213

Added lines #L212 - L213 were not covered by tests
&:hover {
background-color: var(--color-background-hover);
border-radius: var(--border-radius-large);
Expand Down

0 comments on commit 6cf7c40

Please sign in to comment.