diff options
| author | CodeTorso <[email protected]> | 2024-07-28 05:32:08 +0530 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-07-28 05:32:08 +0530 |
| commit | bb4eed6525a4571f2551d65207d508197e1eb8e1 (patch) | |
| tree | 45769512cefd24a9dca1d580abfac254682fe35c /apps/web/app/(dash) | |
| parent | Merge pull request #182 from CodeTorso/backend (diff) | |
| parent | Fix: Add target and rel attributes to external links for new tab opening (diff) | |
| download | supermemory-bb4eed6525a4571f2551d65207d508197e1eb8e1.tar.xz supermemory-bb4eed6525a4571f2551d65207d508197e1eb8e1.zip | |
Merge pull request #180 from dishit7/fix/openlink_in_newtab
Merge pull request #180 from dishit7/fix/openlink_in_newtab
Diffstat (limited to 'apps/web/app/(dash)')
| -rw-r--r-- | apps/web/app/(dash)/chat/chatWindow.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/web/app/(dash)/chat/chatWindow.tsx b/apps/web/app/(dash)/chat/chatWindow.tsx index ed65bf7a..3d7ca295 100644 --- a/apps/web/app/(dash)/chat/chatWindow.tsx +++ b/apps/web/app/(dash)/chat/chatWindow.tsx @@ -366,6 +366,8 @@ function ChatWindow({ href={source.source} key={idx} className="w-[350px] shrink-0 p-4 gap-2 rounded-2xl flex flex-col bg-secondary" + target="_blank" + rel="noopener noreferrer" > <div className="flex justify-between text-foreground-menu text-sm"> <span>{source.type}</span> |