From 35b991728f92ab2dec30ca0498e7db457be012bb Mon Sep 17 00:00:00 2001 From: space-nuko <24979496+space-nuko@users.noreply.github.com> Date: Sat, 27 May 2023 01:53:49 -0500 Subject: [PATCH] Fix --- src/lib/components/ComfyGraphErrorList.svelte | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/lib/components/ComfyGraphErrorList.svelte b/src/lib/components/ComfyGraphErrorList.svelte index 694874d..99dcad9 100644 --- a/src/lib/components/ComfyGraphErrorList.svelte +++ b/src/lib/components/ComfyGraphErrorList.svelte @@ -88,11 +88,15 @@ {error.message} {#if error.exceptionType} ({error.exceptionType}) - {:else if error.input} + {/if} + {#if error.exceptionMessage} +
{error.exceptionMessage}
+ {/if} + {#if error.input}
- Input Name: {error.input.name} + Input: `{error.input.name}` {#if error.input.config} - Type: {getInputTypeName(error.input.config[0])} + ({getInputTypeName(error.input.config[0])}) {/if}
{#if canJumpToDisconnectedInput(error)}