From a6c84cacf3029b6865ad3ce6625f5cc253e1960b Mon Sep 17 00:00:00 2001 From: Oliver Mesieh Date: Thu, 29 Jan 2026 17:16:54 +0100 Subject: [PATCH] Fix missing componentUpdated function --- resources/js/components/ui/LivePreview/LivePreview.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/resources/js/components/ui/LivePreview/LivePreview.vue b/resources/js/components/ui/LivePreview/LivePreview.vue index ffb1d8a5345..79886dcfd58 100644 --- a/resources/js/components/ui/LivePreview/LivePreview.vue +++ b/resources/js/components/ui/LivePreview/LivePreview.vue @@ -130,6 +130,10 @@ const update = debounce(() => { }); }, 150); +function componentUpdated(handle, value) { + extras.value[handle] = value; +} + function setIframeAttributes(iframe) { iframe.setAttribute('frameborder', '0'); iframe.setAttribute('class', previewDevice.value ? 'device' : 'responsive');