Skip to content

Commit

Permalink
fix disabled flag for html editor's textarea, fixes #56
Browse files Browse the repository at this point in the history
  • Loading branch information
mpfau committed Sep 8, 2017
1 parent 3e3ae77 commit 0cba62d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/base/HtmlEditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export class HtmlEditor {
'font-family': 'monospace',
"min-height": this._minHeight ? px(this._minHeight) : 'initial'
},
disabled: this._editor._enabled
disabled: !this._editor._enabled
}))])
])
}
Expand Down

0 comments on commit 0cba62d

Please sign in to comment.