diff --git a/app/components/debug/WebhookReceiverSection.vue b/app/components/debug/WebhookReceiverSection.vue index 527d184..04fd922 100644 --- a/app/components/debug/WebhookReceiverSection.vue +++ b/app/components/debug/WebhookReceiverSection.vue @@ -59,6 +59,14 @@ Actualizar + + + Copiar todos + { } } +const copyAllEvents = () => { + const allEventsJson = JSON.stringify(events.value, null, 2) + copyToClipboard(allEventsJson) +} + const toggleExpand = (id: string) => { if (expandedEvents.value.has(id)) { expandedEvents.value.delete(id)