Skip to content

Commit

Permalink
Always default to thread view for threads
Browse files Browse the repository at this point in the history
  • Loading branch information
cjmalloy committed Dec 23, 2024
1 parent 7a77973 commit 412813d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/component/ref/ref.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -697,7 +697,7 @@ export class RefComponent implements OnChanges, AfterViewInit, OnDestroy, HasCha

@memo
get defaultView() {
if (this.thread) return 'thread';
if (this.thread || this.threads || this.dm) return 'thread';
if (this.comment) return 'comments';
return undefined;
}
Expand Down

0 comments on commit 412813d

Please sign in to comment.