We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8fab6fe commit 1cb0a91Copy full SHA for 1cb0a91
components/knowledge/Notion.tsx
@@ -24,6 +24,7 @@ import {
24
import { CiSearch, CiShare1 } from 'react-icons/ci';
25
import { EditContext } from '@/contexts/edit';
26
import { importFiles } from '@/actions/knowledge/filehelper';
27
+import { Link } from '@nextui-org/react';
28
29
interface NotionFileModalProps {
30
isOpen: boolean;
@@ -195,13 +196,13 @@ export const NotionFileModal = ({
195
196
<TableCell>
197
<Button
198
isIconOnly
199
+ as={Link}
200
+ isExternal
201
+ href={value.url}
202
size="sm"
203
color="primary"
204
variant="flat"
205
startContent={<CiShare1 />}
- onClick={() => {
- window.open(value.url);
- }}
206
/>
207
</TableCell>
208
</TableRow>
0 commit comments