Skip to content

Commit

Permalink
fix(DBPreview): rendering of images from the development database
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzocorallo committed Mar 11, 2024
1 parent d8f64a5 commit 7c42129
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/components/pages/DBPreview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,12 @@ export default function DBPreview({ dbs }: DBPreviewProps) {
.filter((q) => q.text || key == 'com')
.map((q) => (
<li key={key + q.id + (q.sub || '')}>
<Question q={q} isDebug={true} showAttachments />
<Question
q={q}
isDebug={true}
showAttachments
dbRef={dbRef}
/>
</li>
))}
</ul>
Expand Down

0 comments on commit 7c42129

Please sign in to comment.