Skip to content

Commit

Permalink
Make sure we hide the rendering message when completion finishes
Browse files Browse the repository at this point in the history
  • Loading branch information
joelhulen committed Dec 21, 2024
1 parent 1bb3c3f commit 7f6e450
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui/UserPortal/components/ChatMessage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ export default {
messageDisplayStatus() {
if (
this.message.status === 'Failed' ||
(this.message.status === 'Completed' && !this.isRenderingMessage)
(this.message.status === 'Completed')
)
return null;
Expand Down

0 comments on commit 7f6e450

Please sign in to comment.