Skip to content

Commit

Permalink
fix(core): fix the number template to handle drag event
Browse files Browse the repository at this point in the history
  • Loading branch information
arpit1503khanna committed Feb 19, 2024
1 parent df60864 commit 58c73b9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -187,13 +187,16 @@
let-nodeWithInput="nodeWithInput"
let-hide="hide"
>
<div (document:click)="hide()">
<div (document:click)="handleDocumentClick($event)">
<input
type="number"
class="text-input"
autofocus
value="{{ input.setValueName(nodeWithInput.node.state) }}"
(focusout)="callback($event.target)"
(mousedown)="handleMouseDown($event)"
(mouseup)="handleMouseUp()"
(mouseleave)="handleMouseLeave($event)"
/>
</div>
</ng-template>
Expand Down
2 changes: 1 addition & 1 deletion projects/workflows-element/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@
"access": "public",
"directory": "dist"
},
"hash": "01d1d33b78cc9d44c2c5427e055968cdcce3fc69e693611974be19246ddb0b37"
"hash": "eda00eb65b3f01c290e8577ac9b4d2f18c655283559e3b0f74362492c63483c5"
}

0 comments on commit 58c73b9

Please sign in to comment.