Skip to content

Commit 9641c16

Browse files
fix: work item form tab index
1 parent 7aa5b6a commit 9641c16

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

web/core/components/issues/issue-modal/components/title-input.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export const IssueTitleInput: React.FC<TIssueTitleInputProps> = observer((props)
3737
return undefined;
3838
};
3939
return (
40-
<div tabIndex={getIndex("name")}>
40+
<div>
4141
<Controller
4242
control={control}
4343
name="name"
@@ -64,6 +64,7 @@ export const IssueTitleInput: React.FC<TIssueTitleInputProps> = observer((props)
6464
placeholder={t("title")}
6565
className="w-full text-base"
6666
autoFocus
67+
tabIndex={getIndex("name")}
6768
/>
6869
)}
6970
/>

0 commit comments

Comments
 (0)