We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8361106 commit 707daceCopy full SHA for 707dace
browser/components/CodeEditor.js
@@ -823,19 +823,19 @@ export default class CodeEditor extends React.Component {
823
const fontFamily = normalizeEditorFontFamily(this.props.fontFamily)
824
const width = this.props.width
825
return (<
826
- div className ={
+ div className={
827
className == null ? 'CodeEditor' : `CodeEditor ${className}`
828
}
829
- ref= 'root'
830
- tabIndex= '-1'
831
- style= {
+ ref='root'
+ tabIndex='-1'
+ style={
832
{
833
fontFamily,
834
fontSize: fontSize,
835
width: width
836
837
838
- onDrop= {
+ onDrop={
839
e => this.handleDropImage(e)
840
841
/>
0 commit comments