Skip to content

Commit

Permalink
Inserção do Setor na informação do ticket
Browse files Browse the repository at this point in the history
  • Loading branch information
rtenorioh committed Sep 16, 2022
1 parent 6a92830 commit a049206
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions frontend/src/components/TicketInfo/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@ const TicketInfo = ({ contact, ticket, onClick }) => {
title={`${contact.name} #${ticket.id}`}
subheader={
ticket.user &&
`${i18n.t("messagesList.header.assignedTo")} ${ticket.user.name}`
`${i18n.t("messagesList.header.assignedTo")} ${ticket.user.name}
${ticket.queue ? ' | Setor: ' + ticket.queue.name : ' | Setor: Nenhum'}`
}
/>
);
};

export default TicketInfo;
export default TicketInfo;

0 comments on commit a049206

Please sign in to comment.