diff --git a/packages/editor-ui/src/components/ParameterInputList.vue b/packages/editor-ui/src/components/ParameterInputList.vue index 0849b49298bac..37424d6a4c8d8 100644 --- a/packages/editor-ui/src/components/ParameterInputList.vue +++ b/packages/editor-ui/src/components/ParameterInputList.vue @@ -241,7 +241,10 @@ export default defineComponent({ const asyncLoadingError = ref(false); // This will catch errors in async components - onErrorCaptured((e) => { + onErrorCaptured((e, component) => { + if (!component._.type.name in ['FixedCollectionParameter', 'CollectionParameter']) { + return; + } asyncLoadingError.value = true; console.error(e); window?.Sentry?.captureException(e, {