fix(editor): Fix and enable copying to clipboard in PiP (#15632)

Co-authored-by: autologie <suguru@n8n.io>
This commit is contained in:
Alex Grozav
2025-06-17 10:24:48 +02:00
committed by GitHub
parent a953218b9d
commit f9f0fdf40d
7 changed files with 28 additions and 24 deletions

View File

@@ -39,9 +39,10 @@ const props = withDefaults(
const ndvStore = useNDVStore();
const workflowsStore = useWorkflowsStore();
const clipboard = useClipboard();
const i18n = useI18n();
const nodeHelpers = useNodeHelpers();
const clipboard = useClipboard();
const { activeNode } = ndvStore;
const pinnedData = usePinnedData(activeNode);
const { showToast } = useToast();