Skip to content

Commit

Permalink
fix(asset): fix DragEventBaseUtils->_isTreeNodeRelationValid
Browse files Browse the repository at this point in the history
  • Loading branch information
yyc-git committed Dec 27, 2018
1 parent 9d91bbb commit ebba42f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/utils/event/DragEventBaseUtils.re
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ let _isTreeNodeRelationValid = (targetId, startId, checkNodeRelationFunc) =>
| None => (false, None)
| Some(startId) =>
let relationResult =
checkNodeRelationFunc(targetId, startId)
checkNodeRelationFunc(startId, targetId)
|> StateLogicService.getStateToGetData;

(
Expand Down

0 comments on commit ebba42f

Please sign in to comment.