Skip to content

Commit

Permalink
fix: delete return selection (#4026)
Browse files Browse the repository at this point in the history
Co-authored-by: Qinghui.Liu <[email protected]>
  • Loading branch information
orientMoon and Qinghui.Liu authored Nov 13, 2023
1 parent df1f387 commit 0178e48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/x6-plugin-selection/src/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ Graph.prototype.unselect = function (
) {
const selection = this.getPlugin('selection') as Selection
if (selection) {
return selection.unselect(cells, options)
selection.unselect(cells, options)
}
return this
}

0 comments on commit 0178e48

Please sign in to comment.