fix(editor): Canvas showing error toast when clicking outside of "import workflow by url" modal (#9001)

This commit is contained in:
Ricardo Espinoza
2024-04-04 05:15:37 -04:00
committed by GitHub
parent 0ac985133b
commit f6ce81e7da
3 changed files with 78 additions and 26 deletions

View File

@@ -587,6 +587,10 @@ export default defineComponent({
},
)) as MessageBoxInputData;
if (promptResponse === 'cancel') {
return;
}
nodeViewEventBus.emit('importWorkflowUrl', { url: promptResponse.value });
} catch (e) {}
break;