diff options
| author | Abel <abel.liu.china@outlook.com> | 2025-09-13 17:29:24 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-09-13 10:29:24 +0100 |
| commit | b594ff09e4257ce75a30314d64c23b3c371be105 (patch) | |
| tree | d5987b0ca80971eadff465b8a86b3cfcc5ba03de | |
| parent | 2cb1b28a114185b6f097d6e389375e3f6112f953 (diff) | |
| download | karakeep-b594ff09e4257ce75a30314d64c23b3c371be105.tar.zst | |
feat(extension): add current tab title while saving from extension (#1930)
Co-authored-by: Yabo Liu (ext.) <yabo.liu@partner.bmw.com>
Diffstat (limited to '')
| -rw-r--r-- | apps/browser-extension/src/SavePage.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/browser-extension/src/SavePage.tsx b/apps/browser-extension/src/SavePage.tsx index 52c9c687..4c495928 100644 --- a/apps/browser-extension/src/SavePage.tsx +++ b/apps/browser-extension/src/SavePage.tsx @@ -48,6 +48,7 @@ export default function SavePage() { newBookmarkRequest = { type: BookmarkTypes.LINK, url: currentTab.url, + title: currentTab.title, }; } else { setError("Couldn't find the URL of the current tab"); |
