Fixing issue with debounce. Fixes #236

This commit is contained in:
Dessalines 2021-04-07 12:46:12 -04:00
parent b7f7038804
commit af44b62107

View file

@ -90,8 +90,8 @@ export class PostForm extends Component<PostFormProps, PostFormState> {
constructor(props: any, context: any) { constructor(props: any, context: any) {
super(props, context); super(props, context);
this.fetchSimilarPosts = debounce(this.fetchSimilarPosts).bind(this); this.fetchSimilarPosts = debounce(this.fetchSimilarPosts.bind(this));
this.fetchPageTitle = debounce(this.fetchPageTitle).bind(this); this.fetchPageTitle = debounce(this.fetchPageTitle.bind(this));
this.handlePostBodyChange = this.handlePostBodyChange.bind(this); this.handlePostBodyChange = this.handlePostBodyChange.bind(this);
this.state = this.emptyState; this.state = this.emptyState;