mirror of
https://github.com/apache/superset.git
synced 2026-04-26 11:34:27 +00:00
Re-enable rule line-between-class-members (#10862)
This commit is contained in:
committed by
GitHub
parent
91b8c8afc9
commit
e28f3d6220
@@ -68,9 +68,11 @@ export default class TextAreaControl extends React.Component {
|
||||
onControlChange(event) {
|
||||
this.props.onChange(event.target.value);
|
||||
}
|
||||
|
||||
onAceChange(value) {
|
||||
this.props.onChange(value);
|
||||
}
|
||||
|
||||
renderEditor(inModal = false) {
|
||||
const value = this.props.value || '';
|
||||
if (this.props.language) {
|
||||
@@ -103,6 +105,7 @@ export default class TextAreaControl extends React.Component {
|
||||
</FormGroup>
|
||||
);
|
||||
}
|
||||
|
||||
renderModalBody() {
|
||||
return (
|
||||
<div>
|
||||
@@ -111,6 +114,7 @@ export default class TextAreaControl extends React.Component {
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
render() {
|
||||
const controlHeader = <ControlHeader {...this.props} />;
|
||||
return (
|
||||
|
||||
Reference in New Issue
Block a user