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 width = this.props.width
return (<
div className ={
div className={
className == null ? 'CodeEditor' : `CodeEditor ${className}`
}
ref= 'root'
tabIndex= '-1'
style= {
ref='root'
tabIndex='-1'
style={
{
fontFamily,
fontSize: fontSize,
width: width
}
}
onDrop= {
onDrop={
e => this.handleDropImage(e)
}
/>