improvement: show username on ticket header

This commit is contained in:
canove
2020-07-29 10:14:38 -03:00
parent c76ac84a76
commit a36bd8f5a6
3 changed files with 7 additions and 2 deletions

View File

@@ -524,7 +524,7 @@ const MessagesList = () => {
loading ? (
<Skeleton animation="wave" width={80} />
) : (
`Atribuído á ${ticket.userId}`
ticket.user && `Atribuído à: ${ticket.user.name}`
)
}
/>