From e3aa722cd45061d7624165c8d2870e2025479df9 Mon Sep 17 00:00:00 2001 From: gurusainath Date: Wed, 21 Feb 2024 13:49:42 +0530 Subject: [PATCH 1/3] chore: rendering issue title without overflow problem --- web/components/issues/title-input.tsx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/web/components/issues/title-input.tsx b/web/components/issues/title-input.tsx index 55dd80b87bb..851b5e902c0 100644 --- a/web/components/issues/title-input.tsx +++ b/web/components/issues/title-input.tsx @@ -48,6 +48,14 @@ export const IssueTitleInput: FC = observer((props) => { [setIsSubmitting] ); + if (disabled) { + return ( +
+ {title} +
+ ); + } + return (