From c93f9fc8653a174095269cb95d3a37529a7d25a0 Mon Sep 17 00:00:00 2001 From: Anmol Singh Bhatia <121005188+anmolsinghbhatia@users.noreply.github.com> Date: Thu, 12 Feb 2026 13:35:08 +0530 Subject: [PATCH] [WEB-6038] fix: work item empty title flicker #8618 --- apps/web/core/components/issues/title-input.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/core/components/issues/title-input.tsx b/apps/web/core/components/issues/title-input.tsx index 189d1b9ac..8befc5ac1 100644 --- a/apps/web/core/components/issues/title-input.tsx +++ b/apps/web/core/components/issues/title-input.tsx @@ -45,7 +45,7 @@ export const IssueTitleInput = observer(function IssueTitleInput(props: IssueTit } = props; const { t } = useTranslation(); // states - const [title, setTitle] = useState(""); + const [title, setTitle] = useState(value || ""); const [isLengthVisible, setIsLengthVisible] = useState(false); // ref to track if there are unsaved changes const hasUnsavedChanges = useRef(false);