Skip to content

Commit

Permalink
fixup! feat: add recipient info on the right side of the composer
Browse files Browse the repository at this point in the history
Signed-off-by: greta <[email protected]>
  • Loading branch information
GretaD committed Nov 25, 2024
1 parent 789b71d commit a987229
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion src/components/RecipientInfo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
:url="recipients[0].photoUrl" />
</div>
<div class="recipient-details">
<h6>{{ recipient[0].email }}</h6>
<DisplayContactDetails :email="recipient[0].email" />
</div>
</div>
Expand All @@ -29,7 +30,7 @@
:disable-tooltip="true"
:disable-menu="true" />
<div v-if="!expandedRecipients[index]" class="recipient-name">
<h6>{{ recipient.email }}</h6>
<h6>{{ recipient.email }}</h6>

Check failure on line 33 in src/components/RecipientInfo.vue

View workflow job for this annotation

GitHub Actions / NPM lint

Expected indentation of 6 tabs but found 5 tabs
</div>
<div class="expand-toggle" @click="toggleExpand(index)">
<IconArrowUp v-if="isExpanded(index)" :size="16" />
Expand Down

0 comments on commit a987229

Please sign in to comment.