diff --git a/frontend/src/lib/components/apps/components/display/table/AppTable.svelte b/frontend/src/lib/components/apps/components/display/table/AppTable.svelte index c461d4ba8d..ecaca13725 100644 --- a/frontend/src/lib/components/apps/components/display/table/AppTable.svelte +++ b/frontend/src/lib/components/apps/components/display/table/AppTable.svelte @@ -505,6 +505,7 @@ > connectOutput( connectingInput, diff --git a/frontend/src/lib/components/apps/components/helpers/InputValue.svelte b/frontend/src/lib/components/apps/components/helpers/InputValue.svelte index 04d81a3ecc..ee393d4323 100644 --- a/frontend/src/lib/components/apps/components/helpers/InputValue.svelte +++ b/frontend/src/lib/components/apps/components/helpers/InputValue.svelte @@ -267,7 +267,7 @@ return r } catch (e) { error = e.message - console.error("Eval error in app input '" + id + "' with key '" + key + "'", e) + console.warn("Eval error in app input '" + id + "' with key '" + key + "'", e) return value } } @@ -291,7 +291,7 @@ error = '' return r } catch (e) { - console.debug("Eval error in app input '" + id + "' with key '" + key + "'", e) + console.warn("Eval error in app input '" + id + "' with key '" + key + "'", e) return e.message } } else if (input.type === 'static') { diff --git a/frontend/src/lib/components/apps/editor/ComponentHeader.svelte b/frontend/src/lib/components/apps/editor/ComponentHeader.svelte index af700cbfd2..f133786cdc 100644 --- a/frontend/src/lib/components/apps/editor/ComponentHeader.svelte +++ b/frontend/src/lib/components/apps/editor/ComponentHeader.svelte @@ -39,6 +39,7 @@ > connectOutput(connectingInput, component.type, component.id, detail)} componentId={component.id} diff --git a/frontend/src/lib/components/apps/editor/contextPanel/ComponentOutputViewer.svelte b/frontend/src/lib/components/apps/editor/contextPanel/ComponentOutputViewer.svelte index cd6f8fafb2..faefb903d4 100644 --- a/frontend/src/lib/components/apps/editor/contextPanel/ComponentOutputViewer.svelte +++ b/frontend/src/lib/components/apps/editor/contextPanel/ComponentOutputViewer.svelte @@ -7,6 +7,7 @@ export let componentId: string export let hasContent: boolean = false + export let suffix: string = '' const { worldStore, connectingInput } = getContext('AppViewerContext') const { search, hasResult } = getContext('ContextPanel') @@ -19,7 +20,7 @@ object[k] = undefined output?.subscribe( { - id: 'alloutputs' + componentId + '-' + k, + id: 'alloutputs' + suffix + componentId + '-' + k, next: (value) => { if (!hasContent) { hasContent = true