fix(a11y): make task title keyboard editable

This commit is contained in:
kolaente
2026-07-18 12:24:20 +00:00
committed by kolaente
parent 84593438eb
commit 14f2a2947e
@@ -28,6 +28,8 @@
class="title input"
:class="{'disabled': !canWrite}"
:contenteditable="canWrite ? true : undefined"
:tabindex="canWrite ? 0 : undefined"
:aria-label="canWrite ? $t('task.attributes.title') : undefined"
:spellcheck="false"
@input="handleTitleInput"
@blur="save(($event.target as HTMLInputElement).textContent as string)"