[sql lab] Update event handler name (#2680)

Update SqlEditor database change event handler name to be more specific.
This commit is contained in:
graceguo-supercat 2017-04-28 11:42:48 -07:00 committed by GitHub
parent 58309f275f
commit c589616883
1 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ class SqlEditorLeftBar extends React.PureComponent {
this.fetchSchemas(this.props.queryEditor.dbId);
this.fetchTables(this.props.queryEditor.dbId, this.props.queryEditor.schema);
}
onChange(db) {
onDatabaseChange(db) {
const val = db ? db.value : null;
this.setState({ schemaOptions: [] });
this.props.actions.queryEditorSetSchema(this.props.queryEditor, null);
@ -144,7 +144,7 @@ class SqlEditorLeftBar extends React.PureComponent {
'_oc_DatabaseView=database_name&' +
'_od_DatabaseView=asc'
}
onChange={this.onChange.bind(this)}
onChange={this.onDatabaseChange.bind(this)}
value={this.props.queryEditor.dbId}
databaseId={this.props.queryEditor.dbId}
actions={this.props.actions}