refactor(editor): RunData components to composition API (no-changelog) (#11545)

This commit is contained in:
Elias Meire
2024-11-07 15:29:02 +01:00
committed by GitHub
parent 28ad66cc12
commit 6e2809b490
13 changed files with 2044 additions and 2070 deletions

View File

@@ -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;