Skip to content

Commit 1cb0a91

Browse files
committed
Use external link
Signed-off-by: Daishan Peng <[email protected]>
1 parent 8fab6fe commit 1cb0a91

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

components/knowledge/Notion.tsx

+4-3
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ import {
2424
import { CiSearch, CiShare1 } from 'react-icons/ci';
2525
import { EditContext } from '@/contexts/edit';
2626
import { importFiles } from '@/actions/knowledge/filehelper';
27+
import { Link } from '@nextui-org/react';
2728

2829
interface NotionFileModalProps {
2930
isOpen: boolean;
@@ -195,13 +196,13 @@ export const NotionFileModal = ({
195196
<TableCell>
196197
<Button
197198
isIconOnly
199+
as={Link}
200+
isExternal
201+
href={value.url}
198202
size="sm"
199203
color="primary"
200204
variant="flat"
201205
startContent={<CiShare1 />}
202-
onClick={() => {
203-
window.open(value.url);
204-
}}
205206
/>
206207
</TableCell>
207208
</TableRow>

0 commit comments

Comments
 (0)