fix: work item form tab index (#6588)
This commit is contained in:
parent
7aa5b6aa91
commit
7ae841d525
1 changed files with 2 additions and 1 deletions
|
|
@ -37,7 +37,7 @@ export const IssueTitleInput: React.FC<TIssueTitleInputProps> = observer((props)
|
|||
return undefined;
|
||||
};
|
||||
return (
|
||||
<div tabIndex={getIndex("name")}>
|
||||
<div>
|
||||
<Controller
|
||||
control={control}
|
||||
name="name"
|
||||
|
|
@ -64,6 +64,7 @@ export const IssueTitleInput: React.FC<TIssueTitleInputProps> = observer((props)
|
|||
placeholder={t("title")}
|
||||
className="w-full text-base"
|
||||
autoFocus
|
||||
tabIndex={getIndex("name")}
|
||||
/>
|
||||
)}
|
||||
/>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue