mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
refactor(editor): RunData components to composition API (no-changelog) (#11545)
This commit is contained in:
@@ -387,7 +387,7 @@ const onWorkflowActivate = () => {
|
||||
}, 1000);
|
||||
};
|
||||
|
||||
const onOutputItemHover = (e: { itemIndex: number; outputIndex: number }) => {
|
||||
const onOutputItemHover = (e: { itemIndex: number; outputIndex: number } | null) => {
|
||||
if (e === null || !activeNode.value || !isPairedItemHoveringEnabled.value) {
|
||||
ndvStore.setHoveringItem(null);
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user