Skip to content

Commit

Permalink
refine icon
Browse files Browse the repository at this point in the history
  • Loading branch information
Jicheng Lu committed Sep 3, 2024
1 parent 5f41b59 commit 82353f0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/routes/chat/[agentId]/[conversationId]/chat-box.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,8 @@
function onSenderActionGenerated(data) {
if (data?.sender_action == SenderAction.TypingOn) {
isThinking = true;
indication = data.indication || '';
const retIndication = data.indication || '';
indication = retIndication.split('|')[0];
} else if (data?.sender_action == SenderAction.TypingOff) {
isThinking = false;
indication = '';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<!-- svelte-ignore a11y-no-static-element-interactions -->
<!-- svelte-ignore a11y-click-events-have-key-events -->
<i
class="bx bx-zoom-in clickable"
class="bx bx-pencil clickable"
data-bs-toggle="tooltip"
data-bs-placement="top"
title="Zoom in"
Expand Down

0 comments on commit 82353f0

Please sign in to comment.