Fix tab navigation order in issue creation popup (#5148)

Signed-off-by: Ilayda Simsek <ilaydasimsek4@gmail.com>
This commit is contained in:
ilaydasimsek
2024-04-09 17:29:33 +07:00
committed by GitHub
parent 15eab69f91
commit 863a195d4a
3 changed files with 30 additions and 3 deletions
@@ -932,7 +932,7 @@
}}
/>
<ComponentSelector
focusIndex={8}
focusIndex={7}
value={object.component}
space={_space}
onChange={handleComponentIdChanged}
@@ -941,7 +941,7 @@
size={'large'}
/>
<div id="estimation-editor" class="new-line">
<EstimationEditor focusIndex={7} kind={'regular'} size={'large'} value={object} />
<EstimationEditor focusIndex={8} kind={'regular'} size={'large'} value={object} />
</div>
<div id="milestone-editor" class="new-line">
<MilestoneSelector
@@ -956,6 +956,7 @@
</div>
<div id="duedate-editor" class="new-line">
<DatePresenter
focusIndex={10}
bind:value={object.dueDate}
labelNull={tracker.string.DueDate}
kind={'regular'}
@@ -965,6 +966,7 @@
</div>
<div id="parentissue-editor" class="new-line">
<Button
focusIndex={11}
icon={tracker.icon.Parent}
label={object.parentIssue != null ? tracker.string.RemoveParent : tracker.string.SetParent}
kind={'regular'}
@@ -991,7 +993,7 @@
</svelte:fragment>
<svelte:fragment slot="footer">
<Button
focusIndex={10}
focusIndex={12}
icon={IconAttachment}
iconProps={{ fill: 'var(--theme-dark-color)' }}
size={'large'}