pull/722/head
Dessalines 5 years ago
parent 1e0aa5dd3d
commit 9374aefa56

@ -969,7 +969,7 @@ impl Perform for ListCommunities {
let sort = SortType::from_str(&self.sort)?;
let communities: Vec<CommunityView> = CommunityView::list(&conn, user_id, sort, self.page, self.limit)?;
let communities: Vec<CommunityView> = CommunityView::list(&conn, user_id, sort, self.page, Some(50))?;
// Return the jwt
Ok(

@ -120,7 +120,10 @@ export class CommunityForm extends Component<CommunityFormProps, CommunityFormSt
if (i.props.community) {
WebSocketService.Instance.editCommunity(i.state.communityForm);
} else {
WebSocketService.Instance.createCommunity(i.state.communityForm);
setTimeout(function(){
WebSocketService.Instance.createCommunity(i.state.communityForm);
}, 10000);
}
i.setState(i.state);
}

@ -157,7 +157,9 @@ export class Login extends Component<any, State> {
i.state.registerLoading = true;
i.setState(i.state);
event.preventDefault();
WebSocketService.Instance.register(i.state.registerForm);
setTimeout(function(){
WebSocketService.Instance.register(i.state.registerForm);
}, 10000);
}
handleRegisterUsernameChange(i: Login, event: any) {

Loading…
Cancel
Save