We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1b780b commit eb0ab63Copy full SHA for eb0ab63
packages/db/src/impl/couch/courseDB.ts
@@ -669,9 +669,9 @@ above:\n${above.rows.map((r) => `\t${r.id}-${r.key}\n`)}`;
669
`[CourseDB ${this.id}] Sample displayable data:`,
670
allDisplayableData.docs.map((d) => ({
671
id: d._id,
672
- docType: d.docType,
673
- dataStructure: d.data ? Object.keys(d.data) : 'no data field',
674
- dataContent: d.data,
+ docType: (d as any).docType,
+ dataStructure: (d as any).data ? Object.keys((d as any).data) : 'no data field',
+ dataContent: (d as any).data,
675
fullDoc: d,
676
}))
677
);
0 commit comments