in public/components/contentSourceCreate.react.js [8:26]
constructor(props) {
super(props);
this.render = this.render.bind(this);
this.state = {
appName: '',
description: '',
supportsToFromParams: true,
supportsCancelReindex: true,
environments: [],
alertStyle: 'success',
alertMessage: '',
alertVisibility: false,
environmentCount: 1
};
this.resetFormFields = this.resetFormFields.bind(this);
this.resetEnvironments = this.resetEnvironments.bind(this);
this.addEnvironmentItem = this.addEnvironmentItem.bind(this);
this.handleFormSubmit = this.handleFormSubmit.bind(this);
}