forked from profectus/Profectus
Fix build issue
This commit is contained in:
parent
962e789e1d
commit
9707ceb66d
2 changed files with 2 additions and 2 deletions
|
@ -44,7 +44,7 @@
|
||||||
:selectedAction="unref(selectedAction)"
|
:selectedAction="unref(selectedAction)"
|
||||||
@mouseDown="mouseDown"
|
@mouseDown="mouseDown"
|
||||||
@endDragging="endDragging"
|
@endDragging="endDragging"
|
||||||
@clickAction="actionId => clickAction(node, actionId)"
|
@clickAction="(actionId: string) => clickAction(node, actionId)"
|
||||||
/>
|
/>
|
||||||
</g>
|
</g>
|
||||||
</transition-group>
|
</transition-group>
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
:node="node"
|
:node="node"
|
||||||
:node-type="nodeType"
|
:node-type="nodeType"
|
||||||
:selected-action="selectedAction"
|
:selected-action="selectedAction"
|
||||||
@click-action="actionId => emit('clickAction', actionId)"
|
@click-action="(actionId: string) => emit('clickAction', actionId)"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<g
|
<g
|
||||||
|
|
Loading…
Reference in a new issue