Skip to content

Commit

Permalink
ui improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
potts99 committed Mar 30, 2024
1 parent 6c25390 commit 0e6a334
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions apps/client/pages/ticket/[id].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ export default function Ticket() {
</div>
) : (
<h1 className="text-2xl font-bold text-gray-900 dark:text-white">
{data.ticket.title}
<span>#{data.ticket.Number} -</span> {data.ticket.title}
</h1>
)}
<div className="mt-2 text-xs flex flex-row items-center space-x-1 text-gray-500 dark:text-white">
Expand Down Expand Up @@ -361,15 +361,14 @@ export default function Ticket() {
{data.ticket.email}
</span>
<span className="text-xs text-gray-900 dark:text-whit">
{" "}
via
</span>
<span className="font-medium text-xs text-gray-900 dark:text-white">
{data.ticket.fromImap === true
? " Email - "
: " Ticket Creation - "}
: " Agent - "}
</span>
#{data.ticket.Number} -{" "}

<span className="text-xs font-medium text-gray-900 dark:text-white">
{t("created_at")}{" "}
{moment(data.ticket.createdAt).format("DD/MM/YYYY")}
Expand Down

0 comments on commit 0e6a334

Please sign in to comment.