mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-04 19:50:00 +00:00
parent
ab08f5e2c7
commit
cb7adae5c9
1 changed files with 3 additions and 1 deletions
|
@ -160,7 +160,9 @@ export class CommunityForm extends Component<CommunityFormProps, CommunityFormSt
|
||||||
} else if (op == UserOperation.ListCategories){
|
} else if (op == UserOperation.ListCategories){
|
||||||
let res: ListCategoriesResponse = msg;
|
let res: ListCategoriesResponse = msg;
|
||||||
this.state.categories = res.categories;
|
this.state.categories = res.categories;
|
||||||
this.state.communityForm.category_id = res.categories[0].id;
|
if (!this.props.community) {
|
||||||
|
this.state.communityForm.category_id = res.categories[0].id;
|
||||||
|
}
|
||||||
this.setState(this.state);
|
this.setState(this.state);
|
||||||
} else if (op == UserOperation.CreateCommunity) {
|
} else if (op == UserOperation.CreateCommunity) {
|
||||||
let res: CommunityResponse = msg;
|
let res: CommunityResponse = msg;
|
||||||
|
|
Loading…
Reference in a new issue