Skip to content

Commit

Permalink
Add name
Browse files Browse the repository at this point in the history
  • Loading branch information
estruyf committed Aug 16, 2024
1 parent e7b604d commit cb83401
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/utils/getTableRows.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,11 @@ export const getTableRows = async (

tableRow.push({
data: (mediaFiles || [])
.map((m) => `![${m.name}](${m.url})`)
.map(
(m) => `![${m.name}](${m.url})
**${m.name}**`
)
.join("\n"),
header: false,
});
Expand Down

0 comments on commit cb83401

Please sign in to comment.