mirror of
https://github.com/apache/superset.git
synced 2026-04-25 19:14:27 +00:00
@@ -78,10 +78,14 @@ export default class TextAreaControl extends React.Component {
|
||||
const value = this.props.value || '';
|
||||
const minLines = inModal ? 40 : this.props.minLines || 12;
|
||||
if (this.props.language) {
|
||||
const style = { border: '1px solid #CCC' };
|
||||
if (this.props.readOnly) {
|
||||
style.backgroundColor = '#f2f2f2';
|
||||
}
|
||||
return (
|
||||
<TextAreaEditor
|
||||
mode={this.props.language}
|
||||
style={{ border: '1px solid #CCC' }}
|
||||
style={style}
|
||||
minLines={minLines}
|
||||
maxLines={inModal ? 1000 : this.props.maxLines}
|
||||
onChange={this.onAceChangeDebounce}
|
||||
|
||||
Reference in New Issue
Block a user