mirror of
https://github.com/apache/superset.git
synced 2026-05-12 11:25:56 +00:00
Re-enable rule line-between-class-members (#10862)
This commit is contained in:
committed by
GitHub
parent
91b8c8afc9
commit
e28f3d6220
@@ -45,6 +45,7 @@ export default class BoundsControl extends React.Component {
|
||||
this.onMinChange = this.onMinChange.bind(this);
|
||||
this.onMaxChange = this.onMaxChange.bind(this);
|
||||
}
|
||||
|
||||
onMinChange(event) {
|
||||
this.setState(
|
||||
{
|
||||
@@ -53,6 +54,7 @@ export default class BoundsControl extends React.Component {
|
||||
this.onChange,
|
||||
);
|
||||
}
|
||||
|
||||
onMaxChange(event) {
|
||||
this.setState(
|
||||
{
|
||||
@@ -61,6 +63,7 @@ export default class BoundsControl extends React.Component {
|
||||
this.onChange,
|
||||
);
|
||||
}
|
||||
|
||||
onChange() {
|
||||
const mm = this.state.minMax;
|
||||
const errors = [];
|
||||
@@ -76,6 +79,7 @@ export default class BoundsControl extends React.Component {
|
||||
this.props.onChange([null, null], errors);
|
||||
}
|
||||
}
|
||||
|
||||
render() {
|
||||
return (
|
||||
<div>
|
||||
|
||||
Reference in New Issue
Block a user