mirror of
https://github.com/anyproto/anytype-ts.git
synced 2025-06-09 09:35:02 +09:00
fix the incorrect condition in the expression
This commit is contained in:
parent
2f157a1c19
commit
6ed8e39437
1 changed files with 1 additions and 1 deletions
2
dist/workers/graph.js
vendored
2
dist/workers/graph.js
vendored
|
@ -357,7 +357,7 @@ draw = (t) => {
|
|||
};
|
||||
});
|
||||
|
||||
if(dragToSelectStartCoord.x && dragToSelectStartCoord.y && dragToSelectCursorCoord.x && dragToSelectStartCoord.y) {
|
||||
if(dragToSelectStartCoord.x && dragToSelectStartCoord.y && dragToSelectCursorCoord.x && dragToSelectCursorCoord.y) {
|
||||
drawDragToSelectBox();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue