Skip to content

Commit eb0ab63

Browse files
committed
linting
1 parent e1b780b commit eb0ab63

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/db/src/impl/couch/courseDB.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -669,9 +669,9 @@ above:\n${above.rows.map((r) => `\t${r.id}-${r.key}\n`)}`;
669669
`[CourseDB ${this.id}] Sample displayable data:`,
670670
allDisplayableData.docs.map((d) => ({
671671
id: d._id,
672-
docType: d.docType,
673-
dataStructure: d.data ? Object.keys(d.data) : 'no data field',
674-
dataContent: d.data,
672+
docType: (d as any).docType,
673+
dataStructure: (d as any).data ? Object.keys((d as any).data) : 'no data field',
674+
dataContent: (d as any).data,
675675
fullDoc: d,
676676
}))
677677
);

0 commit comments

Comments
 (0)