Comment workaround to atlassian/react-beautiful-dnd#273
This commit is contained in:
parent
bda2d6b0a6
commit
f19dcd8114
1 changed files with 4 additions and 0 deletions
|
@ -118,6 +118,10 @@ const TagPanel = React.createClass({
|
|||
<div
|
||||
className="mx_TagPanel_tagTileContainer"
|
||||
ref={provided.innerRef}
|
||||
// react-beautiful-dnd has a bug that emits a click to the parent
|
||||
// of draggables upon dropping
|
||||
// https://github.com/atlassian/react-beautiful-dnd/issues/273
|
||||
// so we use onMouseDown here as a workaround.
|
||||
onMouseDown={this.onClick}
|
||||
>
|
||||
{ tags }
|
||||
|
|
Loading…
Reference in a new issue