Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
handleKeyEvent = e => {
if (e.keyCode === RETURN_KEY) {
return true;
}
return handleRichTextBoxKeyEventNavigation(e, this.props.record);
};
handleKeyEvent = e => {
return handleRichTextBoxKeyEventNavigation(e, this.props.record);
};
handleKeyEvent_ = e => {
return handleRichTextBoxKeyEventNavigation(e, this.props.entity);
};
handleKeyEvent = e => {
if (e.keyCode === RETURN_KEY) {
return true;
}
return handleRichTextBoxKeyEventNavigation(e, this.props.record);
};