Skip to content

Commit

Permalink
fix(ux): cc and bcc fallback (#1389)
Browse files Browse the repository at this point in the history
  • Loading branch information
ssiyad authored Jul 30, 2023
1 parent ee2d94f commit 6701560
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions desk/src/pages/desk/ticket/ConversationBox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
:date="c.creation"
:sender="c.sender"
:sender-image="c.sender"
:cc="c.cc"
:bcc="c.bcc"
:cc="c.cc || ''"
:bcc="c.bcc || ''"
:attachments="c.attachments"
>
<template #extra="{ content, cc, bcc }">
Expand Down

0 comments on commit 6701560

Please sign in to comment.