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 undefined;
|
||||||
};
|
};
|
||||||
return (
|
return (
|
||||||
<div tabIndex={getIndex("name")}>
|
<div>
|
||||||
<Controller
|
<Controller
|
||||||
control={control}
|
control={control}
|
||||||
name="name"
|
name="name"
|
||||||
|
|
@ -64,6 +64,7 @@ export const IssueTitleInput: React.FC<TIssueTitleInputProps> = observer((props)
|
||||||
placeholder={t("title")}
|
placeholder={t("title")}
|
||||||
className="w-full text-base"
|
className="w-full text-base"
|
||||||
autoFocus
|
autoFocus
|
||||||
|
tabIndex={getIndex("name")}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
/>
|
/>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue