Skip to content

Commit

Permalink
Fix export links
Browse files Browse the repository at this point in the history
  • Loading branch information
Rustem Mussabekov committed Nov 1, 2024
1 parent c101757 commit a3abfd6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/co/bookmarks/export/popover.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,14 @@ export default function BookmarksExportPopover({ spaceId = 0, pin, onClose }) {
HTML
</MenuItem>

<MenuItem href={`${prefix}/export.html${suffix}`} download>
<MenuItem href={`${prefix}/export.csv${suffix}`} download>
CSV
</MenuItem>

<MenuItem href={`${prefix}/export.html${suffix}`} download>
<MenuItem href={`${prefix}/export.txt${suffix}`} download>
TXT
</MenuItem>

<MenuItem href={`${prefix}/export.zip${suffix}`} download>
ZIP
</MenuItem>
Expand Down

0 comments on commit a3abfd6

Please sign in to comment.