diff --git a/UI/Web/src/app/cards/entity-title/entity-title.component.ts b/UI/Web/src/app/cards/entity-title/entity-title.component.ts index 072c962b3..b4e768aac 100644 --- a/UI/Web/src/app/cards/entity-title/entity-title.component.ts +++ b/UI/Web/src/app/cards/entity-title/entity-title.component.ts @@ -51,7 +51,10 @@ export class EntityTitleComponent implements OnInit { } else { const v = this.utilityService.asVolume(this.entity); this.volumeTitle = v.name || ''; - this.titleName = v.chapters[0].titleName || ''; + this.titleName = v.name || ''; + if (v.chapters[0].titleName) { + this.titleName += ' - ' + v.chapters[0].titleName; + } } this.cdRef.markForCheck(); }