Add 'posts & replies' view to profiles

This commit is contained in:
Paul Frazee 2022-11-22 12:26:53 -06:00
parent d608d67bfe
commit eaa2105570
3 changed files with 17 additions and 2 deletions

View file

@ -196,6 +196,10 @@ export class FeedModel {
return this.hasLoaded && !this.hasContent
}
get nonReplyFeed() {
return this.feed.filter(post => !post.record.reply)
}
setHasNewLatest(v: boolean) {
this.hasNewLatest = v
}