fix(dashboard): defensive null guard in ContributorStack; fix spec makeDoc factories

This commit is contained in:
Marcel
2026-04-19 19:22:52 +02:00
parent 0c65d5d748
commit 64c5b40eae
5 changed files with 12 additions and 2 deletions

View File

@@ -15,6 +15,8 @@ function makeDoc(overrides: Partial<TranscriptionQueueItemDTO> = {}): Transcript
annotationCount: 0,
textedBlockCount: 0,
reviewedBlockCount: 0,
contributors: [],
hasMoreContributors: false,
...overrides
};
}