diff --git a/UI/Web/src/app/chapter-detail/chapter-detail.component.ts b/UI/Web/src/app/chapter-detail/chapter-detail.component.ts index 760f49a17..ad021de97 100644 --- a/UI/Web/src/app/chapter-detail/chapter-detail.component.ts +++ b/UI/Web/src/app/chapter-detail/chapter-detail.component.ts @@ -279,7 +279,11 @@ export class ChapterDetailComponent implements OnInit { this.showDetailsTab = hasAnyCast(this.chapter) || (this.chapter.genres || []).length > 0 || (this.chapter.tags || []).length > 0 || this.chapter.webLinks.length > 0; - + + if (!this.showDetailsTab && this.activeTabId === TabID.Details) { + this.activeTabId = TabID.Reviews; + } + this.isLoading = false; this.cdRef.markForCheck(); });