Fix community filtering.

This commit is contained in:
Dessalines 2022-07-28 16:31:00 -04:00
parent 4117d04196
commit 2a2cee48e9
4 changed files with 10 additions and 9 deletions

View file

@ -77,7 +77,7 @@
"eslint-plugin-prettier": "^4.0.0", "eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4", "husky": "^7.0.4",
"import-sort-style-module": "^6.0.0", "import-sort-style-module": "^6.0.0",
"lemmy-js-client": "0.17.0-rc.33", "lemmy-js-client": "0.17.0-rc.38",
"lint-staged": "^12.4.1", "lint-staged": "^12.4.1",
"mini-css-extract-plugin": "^2.6.0", "mini-css-extract-plugin": "^2.6.0",
"node-fetch": "^2.6.1", "node-fetch": "^2.6.1",

View file

@ -219,7 +219,7 @@ export class Community extends Component<any, State> {
page, page,
limit: Some(fetchLimit), limit: Some(fetchLimit),
sort, sort,
type_: Some(ListingType.Community), type_: Some(ListingType.All),
saved_only: Some(false), saved_only: Some(false),
auth: req.auth, auth: req.auth,
}); });
@ -232,7 +232,7 @@ export class Community extends Component<any, State> {
page, page,
limit: Some(fetchLimit), limit: Some(fetchLimit),
sort, sort,
type_: Some(ListingType.Community), type_: Some(ListingType.All),
saved_only: Some(false), saved_only: Some(false),
auth: req.auth, auth: req.auth,
}); });
@ -486,7 +486,7 @@ export class Community extends Component<any, State> {
page: Some(this.state.page), page: Some(this.state.page),
limit: Some(fetchLimit), limit: Some(fetchLimit),
sort: Some(this.state.sort), sort: Some(this.state.sort),
type_: Some(ListingType.Community), type_: Some(ListingType.All),
community_name: Some(this.state.communityName), community_name: Some(this.state.communityName),
community_id: None, community_id: None,
saved_only: Some(false), saved_only: Some(false),
@ -498,7 +498,7 @@ export class Community extends Component<any, State> {
page: Some(this.state.page), page: Some(this.state.page),
limit: Some(fetchLimit), limit: Some(fetchLimit),
sort: Some(this.state.sort), sort: Some(this.state.sort),
type_: Some(ListingType.Community), type_: Some(ListingType.All),
community_name: Some(this.state.communityName), community_name: Some(this.state.communityName),
community_id: None, community_id: None,
saved_only: Some(false), saved_only: Some(false),

View file

@ -314,6 +314,7 @@ export class PostForm extends Component<PostFormProps, PostFormState> {
{i18n.t("related_posts")} {i18n.t("related_posts")}
</div> </div>
<PostListings <PostListings
showCommunity
posts={sPosts} posts={sPosts}
enableDownvotes={this.props.enableDownvotes} enableDownvotes={this.props.enableDownvotes}
enableNsfw={this.props.enableNsfw} enableNsfw={this.props.enableNsfw}

View file

@ -4948,10 +4948,10 @@ lcid@^1.0.0:
dependencies: dependencies:
invert-kv "^1.0.0" invert-kv "^1.0.0"
lemmy-js-client@0.17.0-rc.33: lemmy-js-client@0.17.0-rc.38:
version "0.17.0-rc.33" version "0.17.0-rc.38"
resolved "https://registry.yarnpkg.com/lemmy-js-client/-/lemmy-js-client-0.17.0-rc.33.tgz#e05cc88213da3c0c21c7ea53c29054041d619150" resolved "https://registry.yarnpkg.com/lemmy-js-client/-/lemmy-js-client-0.17.0-rc.38.tgz#bbe0667ad44bbd0c1e516813d3c81b65c7f6a329"
integrity sha512-rG0yCc9AAc5/B+muDfWB7bKizBG7r/xSzHeEw5ms50xF4dN+KOqvRcHTf0+15uAYehBF5B54nyxdlKPRKL9GxQ== integrity sha512-uDC19s3+Eva+Hu3LhIPkT5j0Ngh7F84TA4VnfxMVJN6BQZFLZUmTvAErwJcqyj5vz3sNnw4jsEeTSGPODSXfeg==
levn@^0.4.1: levn@^0.4.1:
version "0.4.1" version "0.4.1"