Skip to content

Commit

Permalink
Displays answer chunks as soon as received
Browse files Browse the repository at this point in the history
  • Loading branch information
ebrehault committed Jan 9, 2025
1 parent c07a2fd commit d24c032
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/search-widget/src/components/answer/Chat.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
style={!fullscreen && height ? '--custom-height-container:' + height : undefined}>
<div
class="entries-container"
class:hidden={!$hasChatEntries}
class:hidden={$chat.length === 0}
bind:this={entriesContainerElement}>
{#each $chat as entry, i}
<div class="chat-entry">
Expand Down

0 comments on commit d24c032

Please sign in to comment.