From 3dccc56d168ba844c49780f83f8198dc46a38790 Mon Sep 17 00:00:00 2001 From: James Collins Date: Wed, 29 Mar 2023 14:57:59 +1000 Subject: [PATCH] reload component when attachments change outside --- resources/js/components/SMInputAttachments.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/js/components/SMInputAttachments.vue b/resources/js/components/SMInputAttachments.vue index 3249235..fa3589b 100644 --- a/resources/js/components/SMInputAttachments.vue +++ b/resources/js/components/SMInputAttachments.vue @@ -127,6 +127,7 @@ watch( () => props.modelValue, (newValue) => { value.value = newValue; + handleLoad(); } );