mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-05 12:05:01 +00:00
parent
aa060f245a
commit
e73d28f5f2
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){
|
||||
let res: ListCategoriesResponse = msg;
|
||||
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);
|
||||
} else if (op == UserOperation.CreateCommunity) {
|
||||
let res: CommunityResponse = msg;
|
||||
|
|
Loading…
Reference in a new issue