aboutsummaryrefslogtreecommitdiffstats
path: root/apps/browser-extension/src
diff options
context:
space:
mode:
authorSnoww <40239844+SnowSquire@users.noreply.github.com>2026-01-18 19:00:34 -0500
committerGitHub <noreply@github.com>2026-01-19 00:00:34 +0000
commitbf2c6ded96506896d9a254bb6c95f50c8416de22 (patch)
treecd8a7f2181d573f24e7acf14ad1b0d833b809fb8 /apps/browser-extension/src
parente09061bd37c6496685ea0fdabe1d4d01f1b659ad (diff)
downloadkarakeep-bf2c6ded96506896d9a254bb6c95f50c8416de22.tar.zst
feat(extension): autofocus on note open (#2366)
* Autofocus on note open
Diffstat (limited to 'apps/browser-extension/src')
-rw-r--r--apps/browser-extension/src/components/NoteEditor.tsx1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/browser-extension/src/components/NoteEditor.tsx b/apps/browser-extension/src/components/NoteEditor.tsx
index 15f1515b..fb94f83b 100644
--- a/apps/browser-extension/src/components/NoteEditor.tsx
+++ b/apps/browser-extension/src/components/NoteEditor.tsx
@@ -55,6 +55,7 @@ export function NoteEditor({ bookmarkId }: { bookmarkId: string }) {
return (
<div className="flex flex-col gap-2">
<Textarea
+ autoFocus
className="h-32 w-full overflow-auto rounded bg-background p-2 text-sm text-gray-400 dark:text-gray-300"
value={noteValue}
placeholder="Write some notes ..."