Merged
Conversation
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 2 potential issues.
Bugbot Autofix is OFF. To automatically fix reported issues with Cloud Agents, enable Autofix in the Cursor dashboard.
ui/plugin-system/src/components/Variables/VariableEditorForm/VariableEditorForm.tsx
Show resolved
Hide resolved
galangel
approved these changes
Feb 3, 2026
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Description
Connected to https://github.com/logzio/gaia-hermes-ws/pull/15953
hidden?: booleanto QuerySpec to hide queries from chart visualization while still executing themReload QueryandRun QuerybuttonNote
Medium Risk
Touches core query execution and caching behavior (dependency gating, query keys, cycle detection), which can impact data loading and performance across dashboards despite being mostly additive and covered by new unit tests.
Overview
Enables math/derived queries by letting TimeSeries query plugins declare inter-query dependencies (
dependsOn.queries) and by passingresolvedQueryResults+queryIndexintoTimeSeriesQueryContext;useTimeSeriesQueriesnow dynamically gates execution until dependencies are resolved, fingerprints dependency data into the React Query key, and detects/throws on circular dependencies (refactored intotime-series-queries-utils.tswith tests).Adds a
hiddenflag toQuerySpec/schema and threads it throughDataQueriesProvider/dashboard panel wiring so queries can execute but be excluded from chart rendering;PanelContentfilters hidden results and treats “all queries hidden” as a valid render state.Updates the query editing UI to support this workflow: adds a per-query visibility toggle (eye icon), passes
indexthroughPluginEditor/PluginSpecEditor, and re-enables an explicit Run/Reload button with synced-state styling (also used in variable editor), with tests updated accordingly.Written by Cursor Bugbot for commit 50bb43c. This will update automatically on new commits. Configure here.