Skip to content

Commit

Permalink
fix: 🐛 fix export with links
Browse files Browse the repository at this point in the history
  • Loading branch information
gouz committed Apr 18, 2024
1 parent 4f35a8d commit e00a7dd
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "choc",
"version": "0.1.4",
"version": "0.1.5",
"module": "src/index.ts",
"type": "module",
"devDependencies": {
Expand Down
12 changes: 11 additions & 1 deletion src/DTO.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,17 @@ export const DTOExport = (
): TalkRow[] =>
talks.flatMap(
(
{ title, speakers, formats, categories, rating, loves, hates, language },
{
title,
speakers,
formats,
categories,
rating,
loves,
hates,
language,
id,
},
position: number
) => {
const line = {
Expand Down

0 comments on commit e00a7dd

Please sign in to comment.