Skip to content

Commit

Permalink
chore: add comments
Browse files Browse the repository at this point in the history
  • Loading branch information
barmac authored and nikku committed Oct 16, 2024
1 parent b956856 commit e9227ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/dmn-js-shared/src/components/ContentEditable.js
Original file line number Diff line number Diff line change
Expand Up @@ -243,11 +243,11 @@ export default class ContentEditable extends Component {
spellCheck="false"
data-placeholder={ placeholder || '' }
onInput={ this.onInput }
onkeypress={ this.onkeypress }
onkeypress={ this.onkeypress } // intentionally lowercase to use native event
onPaste={ this.onPaste }
onFocus={ this.onFocus }
onBlur={ this.onBlur }
onkeydown={ this.onkeydown }
onkeydown={ this.onkeydown } // intentionally lowercase to use native event
ref={ node => this.node = node }
dangerouslySetInnerHTML={ { __html: value } }></div>
);
Expand Down

0 comments on commit e9227ec

Please sign in to comment.