Skip to content

Commit

Permalink
Reverse order of proposal discussion posts (#3236)
Browse files Browse the repository at this point in the history
  • Loading branch information
Joystream Stats committed Dec 11, 2022
1 parent 5554d86 commit 2743e59
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export const ProposalDiscussions = ({ thread, proposalId }: Props) => {
</Tooltip>
</Badge>
</DiscussionsHeader>
{discussionPosts.sort(Comparator<ForumPost>(true, 'createdAt').string).map((post, index) => {
{discussionPosts.sort(Comparator<ForumPost>(false, 'createdAt').string).map((post, index) => {
return (
<PostListItem
isFirstItem={index === 0}
Expand Down

0 comments on commit 2743e59

Please sign in to comment.