Fixed Previous Build (#2661)

This commit is contained in:
Joe Milazzo 2024-01-28 12:51:56 -06:00 committed by GitHub
parent e41795f9c2
commit 48aa8cacfd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 19 additions and 15 deletions

View file

@ -282,7 +282,7 @@ export class EditSeriesModalComponent implements OnInit {
});
this.seriesVolumes.forEach(vol => {
vol.volumeFiles = vol.chapters?.sort(this.utilityService.sortChapters).map((c: Chapter) => c.files.map((f: any) => {
f.chapter = c.minNumber;
f.chapter = c.number;
return f;
})).flat();
});