Enhance ConversationStatusIndicators with upload status indication#217
Enhance ConversationStatusIndicators with upload status indication#217
Conversation
- Added a visual indicator for ongoing uploads when the conversation is not finished, improving user awareness of processing status. - Refactored tooltip label formatting for better readability. - Cleaned up conditional rendering for error handling in conversation status display.
|
Caution Review failedThe pull request is closed. WalkthroughA pulsing red dot indicator was introduced in the Changes
Suggested reviewers
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (1)
✨ Finishing Touches
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Bug: Upload Indicator Shows Incorrectly
The visual indicator intended for ongoing uploads is incorrectly displayed for non-upload (portal) conversations that are not finished. The condition !isUpload && conversation.is_finished === false should be isUpload && conversation.is_finished === false to correctly show the indicator for ongoing uploads.
echo/frontend/src/components/conversation/ConversationAccordion.tsx#L389-L395
echo/echo/frontend/src/components/conversation/ConversationAccordion.tsx
Lines 389 to 395 in 06a09c9
Was this report helpful? Give feedback by reacting with 👍 or 👎
Summary by CodeRabbit
New Features
Style