From 8bc3137bcc3ccb6fc65b6164a29abb2c0aeb6afc Mon Sep 17 00:00:00 2001 From: Anmol Singh Bhatia Date: Mon, 9 Feb 2026 14:59:13 +0530 Subject: [PATCH] fix: work item empty title flicker --- 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 189d1b9acad..8befc5ac12a 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);