feat: Expandable metadata drawer + transcription system (#175, #176) #178

Merged
marcel merged 47 commits from feat/issue-175-176-metadata-drawer-transcription into main 2026-04-06 11:31:11 +02:00
Showing only changes of commit cef1810700 - Show all commits

View File

@@ -169,6 +169,7 @@ function handleEditKeydown(e: KeyboardEvent, commentId: string) {
e.preventDefault(); e.preventDefault();
saveEdit(commentId); saveEdit(commentId);
} else if (e.key === 'Escape') { } else if (e.key === 'Escape') {
e.stopPropagation();
cancelEdit(); cancelEdit();
} }
} }