diff options
| author | Snoww <40239844+SnowSquire@users.noreply.github.com> | 2026-01-18 19:00:34 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-19 00:00:34 +0000 |
| commit | bf2c6ded96506896d9a254bb6c95f50c8416de22 (patch) | |
| tree | cd8a7f2181d573f24e7acf14ad1b0d833b809fb8 /apps/browser-extension/src/components/NoteEditor.tsx | |
| parent | e09061bd37c6496685ea0fdabe1d4d01f1b659ad (diff) | |
| download | karakeep-bf2c6ded96506896d9a254bb6c95f50c8416de22.tar.zst | |
feat(extension): autofocus on note open (#2366)
* Autofocus on note open
Diffstat (limited to 'apps/browser-extension/src/components/NoteEditor.tsx')
| -rw-r--r-- | apps/browser-extension/src/components/NoteEditor.tsx | 1 |
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 ..." |
