-
Notifications
You must be signed in to change notification settings - Fork 0
fix(connectors): clear query on type switch, pre-fill edit dialog #345
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
Closed
Closed
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
b76923c
fix: auto-run preview in widget creation mode when connection and que…
alfredorubin96 75d28c5
fix: show warning in query editor when no connector is selected (#314)
alfredorubin96 739fd36
fix: prevent dashboard list layout shift on scroll (#317)
alfredorubin96 a770020
fix: show "No connection configured" instead of misleading "Waiting f…
alfredorubin96 5734e15
fix: prevent graph chart infinite loading loop on fullscreen expand (…
alfredorubin96 4744a43
fix: make connector error click E2E test less brittle on CI
alfredorubin96 b84cd21
chore: restore CLAUDE.md, agents, skills, hooks, settings + add Playw…
alfredorubin96 ebd6c97
chore: streamline agent pipeline — remove redundant agents/skills, up…
alfredorubin96 482d98f
fix: harden query editor panel tests per CodeRabbit review
alfredorubin96 99b190a
test: add coverage for graph chart fullscreen fix to meet SonarCloud …
alfredorubin96 7935997
Merge branch 'fix/313-graph-chart-fullscreen-loop' into release/1.0-i…
alfredorubin96 8dbd6de
Merge branch 'fix/314-query-editor-no-connector-warning' into release…
alfredorubin96 160aa71
Merge branch 'fix/315-widget-preview-blank-on-creation' into release/…
alfredorubin96 4c9148c
chore: resolve merge conflict — split card-container tests
alfredorubin96 cd16f2d
Merge branch 'fix/317-dashboard-scroll-layout-shift' into release/1.0…
alfredorubin96 72f99da
fix: replace fullscreen loading text with spinner to prevent bleed-th…
alfredorubin96 da2e03f
feat: add user simulation agents for UX friction reporting
alfredorubin96 e246b87
docs: add UX friction report from automated user simulations
alfredorubin96 489bcc4
fix(connectors): clear query on type switch, pre-fill edit dialog (#3…
alfredorubin96 8610931
fix: update E2E tests for settings tab navigation and error card locator
alfredorubin96 e1c43b8
Merge branch 'release/1.0' into fix/issue-325-326-connectors
alfredorubin96 004351a
test: add coverage for connector fixes to meet SonarCloud gate (#345)
alfredorubin96 5e25871
test: add final coverage for connector fixes (#345)
alfredorubin96 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ignore stale edit-prefill responses.
This fetch always applies its result to
editForm, even if the dialog was closed, another connection was opened, or the user already started typing. A slow response for connection A can overwrite connection B's form and then save A's config into B. Guard the update with the activeconn.idor cancel the previous request.🤖 Prompt for AI Agents