From b03166b1fa744ad8663e9c11812a379aa1d8bf48 Mon Sep 17 00:00:00 2001 From: Jack Andrews Date: Sat, 2 Nov 2024 00:22:48 +0000 Subject: [PATCH] fix: issue title width --- apps/client/components/TicketDetails/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/components/TicketDetails/index.tsx b/apps/client/components/TicketDetails/index.tsx index 820a2a7f5..458fd5c0d 100644 --- a/apps/client/components/TicketDetails/index.tsx +++ b/apps/client/components/TicketDetails/index.tsx @@ -403,7 +403,7 @@ export default function Ticket() { name="title" id="title" style={{ fontSize: "1.5rem" }} - className="border-none -mt-[1px] px-0 pl-0.5 w-1/2 m block text-foreground bg-transparent font-bold focus:outline-none focus:ring-0 placeholder:text-primary sm:text-sm sm:leading-6" + className="border-none -mt-[1px] px-0 pl-0.5 w-3/4 truncated m block text-foreground bg-transparent font-bold focus:outline-none focus:ring-0 placeholder:text-primary sm:text-sm sm:leading-6" value={title} defaultValue={data.ticket.title} onChange={(e) => setTitle(e.target.value)}