diff --git a/frontend/src/lib/components/LogViewer.svelte b/frontend/src/lib/components/LogViewer.svelte index 8f8c7546c8611..038b53fb17bcd 100644 --- a/frontend/src/lib/components/LogViewer.svelte +++ b/frontend/src/lib/components/LogViewer.svelte @@ -221,86 +221,89 @@
{#if content}{@const len =
- (content?.length ?? 0) +
- (loadedFromObjectStore?.length ?? 0)}{#if downloadStartUrl}
{:else if len > LOG_LIMIT}(truncated to the last {LOG_LIMIT} characters)
{/if}{@html html}{:else if !isLoading}{customEmptyMessage}{/if}
{#if content}{@const len =
+ (content?.length ?? 0) +
+ (loadedFromObjectStore?.length ?? 0)}{#if downloadStartUrl}
{:else if len > LOG_LIMIT}(truncated to the last {LOG_LIMIT} characters)
{/if}{@html html}{:else if !isLoading}{customEmptyMessage}{/if}
+