mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
fix(editor): Fix and enable copying to clipboard in PiP (#15632)
Co-authored-by: autologie <suguru@n8n.io>
This commit is contained in:
@@ -36,6 +36,7 @@ const emit = defineEmits<{
|
||||
}>();
|
||||
|
||||
const clipboard = useClipboard();
|
||||
|
||||
const locale = useI18n();
|
||||
const toast = useToast();
|
||||
|
||||
@@ -149,7 +150,7 @@ async function copySessionId() {
|
||||
@click="emit('clickHeader')"
|
||||
>
|
||||
<template #actions>
|
||||
<N8nTooltip v-if="clipboard.isSupported.value && !isReadOnly">
|
||||
<N8nTooltip v-if="clipboard.isSupported && !isReadOnly">
|
||||
<template #content>
|
||||
{{ sessionId }}
|
||||
<br />
|
||||
|
||||
Reference in New Issue
Block a user