mirror of
https://github.com/apache/superset.git
synced 2026-05-11 10:55:43 +00:00
Re-enable rule line-between-class-members (#10862)
This commit is contained in:
committed by
GitHub
parent
91b8c8afc9
commit
e28f3d6220
@@ -68,12 +68,15 @@ export default class Control extends React.PureComponent {
|
||||
this.onMouseEnter = this.setHover.bind(this, true);
|
||||
this.onMouseLeave = this.setHover.bind(this, false);
|
||||
}
|
||||
|
||||
onChange(value, errors) {
|
||||
this.props.actions.setControlValue(this.props.name, value, errors);
|
||||
}
|
||||
|
||||
setHover(hovered) {
|
||||
this.setState({ hovered });
|
||||
}
|
||||
|
||||
render() {
|
||||
const { type, hidden } = this.props;
|
||||
if (!type) return null;
|
||||
|
||||
Reference in New Issue
Block a user