summaryrefslogtreecommitdiffstats
path: root/ui/src/components/post-listings.tsx
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2020-03-04 11:46:34 -0500
committerDessalines <tyhou13@gmx.com>2020-03-04 11:46:34 -0500
commitfb355188487bcd1e4185b8a034f95560cc28946d (patch)
tree21e2c6026e17e913cd8ac93569c02b08b7e5c9ba /ui/src/components/post-listings.tsx
parent8855b91d0c15bcf9273f81736149e74b8c1a2fe4 (diff)
Fixing post sorting by stickied on front end. Fixes #575
Diffstat (limited to 'ui/src/components/post-listings.tsx')
-rw-r--r--ui/src/components/post-listings.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/src/components/post-listings.tsx b/ui/src/components/post-listings.tsx
index d61f624d..5e6acc0c 100644
--- a/ui/src/components/post-listings.tsx
+++ b/ui/src/components/post-listings.tsx
@@ -53,7 +53,7 @@ export class PostListings extends Component<PostListingsProps, any> {
}
if (this.props.sort !== undefined) {
- postSort(out, this.props.sort);
+ postSort(out, this.props.sort, this.props.showCommunity == undefined);
}
return out;