Skip to content

Commit ccfc77f

Browse files
committed
fix: Fix duplicate 'for' attributes in Edit Task modal
1 parent 9c6a152 commit ccfc77f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ui/EditTask.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -597,14 +597,14 @@
597597
<!-- --------------------------------------------------------------------------- -->
598598
<!-- Blocked By Tasks -->
599599
<!-- --------------------------------------------------------------------------- -->
600-
<label for="start">Blocked B<span class="accesskey">y</span></label>
600+
<label for="blockedBy">Blocked B<span class="accesskey">y</span></label>
601601
<Dependency type="blockedBy" task={task} editableTask={editableTask} allTasks={allTasks}
602602
_onDescriptionKeyDown={_onDescriptionKeyDown} accesskey={accesskey} accesskeyLetter="y" />
603603

604604
<!-- --------------------------------------------------------------------------- -->
605605
<!-- Blocking Tasks -->
606606
<!-- --------------------------------------------------------------------------- -->
607-
<label for="start" class="accesskey-first">Blocking</label>
607+
<label for="blocking" class="accesskey-first">Blocking</label>
608608
<Dependency type="blocking" task={task} editableTask={editableTask} allTasks={allTasks}
609609
_onDescriptionKeyDown={_onDescriptionKeyDown} accesskey={accesskey} accesskeyLetter="B" />
610610
{:else}

0 commit comments

Comments
 (0)