-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
fix: Data browser table shows loading indicator when info panel is loading #2782
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
🚀 Thanks for opening this pull request! We appreciate your effort in improving the project. Please let us know once your pull request is ready for review. |
📝 WalkthroughWalkthroughThe changes focus on clarifying and scoping the loading state management in the data browser and aggregation/info panel components. The generic Changes
Sequence Diagram(s)sequenceDiagram
participant User
participant DataBrowser
participant AggregationPanel
User->>DataBrowser: Clicks on a cell
DataBrowser->>AggregationPanel: Requests info panel data
AggregationPanel->>AggregationPanel: Set isLoadingInfoPanel = true
AggregationPanel-->>DataBrowser: Info panel loading state updated
AggregationPanel->>AggregationPanel: Fetches data
AggregationPanel->>AggregationPanel: Set isLoadingInfoPanel = false
AggregationPanel-->>DataBrowser: Info panel loading complete
Assessment against linked issues
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (4)
🧰 Additional context used🪛 ESLintsrc/dashboard/Data/Browser/BrowserTable.react.js[error] 9-9: 'Button' is defined but never used. (no-unused-vars) [error] 10-10: 'DataBrowserHeaderBar' is defined but never used. (no-unused-vars) [error] 11-11: 'EmptyState' is defined but never used. (no-unused-vars) [error] 12-12: 'Icon' is defined but never used. (no-unused-vars) [error] 15-15: 'Editor' is defined but never used. (no-unused-vars) ⏰ Context from checks skipped due to timeout of 90000ms (1)
🔇 Additional comments (11)
🪧 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 (
|
🎉 Snyk checks have passed. No issues have been found so far.✅ security/snyk check is complete. No issues have been found. (View Details) |
## [7.1.1-alpha.2](7.1.1-alpha.1...7.1.1-alpha.2) (2025-05-03) ### Bug Fixes * Data browser table shows loading indicator when info panel is loading ([#2782](#2782)) ([da57e5e](da57e5e))
🎉 This change has been released in version 7.1.1-alpha.2 |
New Pull Request Checklist
Issue Description
Closes: #2781
Approach
It seems that in #2768 the
isLoading
param was mistaken for the data table loading indicator but it controls the info panel loading indicator. Removed that added logic, because the also addedseems to be enough to fix #2718 which was the original intention.
Summary by CodeRabbit