This commit is contained in:
Mirco Wittrien 2020-07-06 10:32:34 +02:00
parent fb3cea5ba4
commit d6a4f0fe32
2 changed files with 2 additions and 2 deletions

View File

@ -6778,7 +6778,7 @@
handleMouseLeave(e) {if (typeof this.props.onMouseLeave == "function") this.props.onMouseLeave(e, this);}
render() {
return BDFDB.ReactUtils.createElement(InternalComponents.NativeSubComponents.Clickable, Object.assign({}, this.props, {
className: BDFDB.DOMUtils.formatClassName(this.props.className, BDFDB.disCN.cursorpointer),
className: BDFDB.DOMUtils.formatClassName(this.props.className, (this.props.className || "").toLowerCase().indexOf("disabled") == -1 && BDFDB.disCN.cursorpointer),
onClick: this.handleClick.bind(this),
onContextMenu: this.handleContextMenu.bind(this),
onMouseUp: this.handleMouseDown.bind(this),

File diff suppressed because one or more lines are too long