1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 17:56:25 +00:00

removing spaces after =

This commit is contained in:
Guilherme Silva
2018-11-08 14:11:43 +00:00
parent 8361106660
commit 707dace3d0

View File

@@ -823,19 +823,19 @@ export default class CodeEditor extends React.Component {
const fontFamily = normalizeEditorFontFamily(this.props.fontFamily) const fontFamily = normalizeEditorFontFamily(this.props.fontFamily)
const width = this.props.width const width = this.props.width
return (< return (<
div className ={ div className={
className == null ? 'CodeEditor' : `CodeEditor ${className}` className == null ? 'CodeEditor' : `CodeEditor ${className}`
} }
ref= 'root' ref='root'
tabIndex= '-1' tabIndex='-1'
style= { style={
{ {
fontFamily, fontFamily,
fontSize: fontSize, fontSize: fontSize,
width: width width: width
} }
} }
onDrop= { onDrop={
e => this.handleDropImage(e) e => this.handleDropImage(e)
} }
/> />