-
Notifications
You must be signed in to change notification settings - Fork 14.6k
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
fix(graph): graph page error #13395
Closed
Closed
fix(graph): graph page error #13395
Conversation
This file contains 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
* refactor(explore): restructure DateFilterControl * fix UT * remove datasource props * remove unused files * fix DateFilterControl in filterbox over length
* feat: add cross filters * refactor: fix CR notes * lint: fix lint * lint: fix lint * feat: POC adding filters set feature * chore: pre-commit * refactor: under chage * lint: fix TS * fix: fix FF name * refactor: move to behaviors * lint: fix lint * refactor: update state of native filters * refactor: finish refactor nativeFilter state * feat: split native filters state * refactor: refactor Time filter to use new API * refactor: refactor Time filter to use new API * refactor: fix CR notes * fix: fix update values in filter bar * refactor: save filter sets in meta * feat(filter-sets): save filters sets in metadata * refactor: partially fix ts * refactor: merge conflicts * refactor: add behaviors property * refactor: add behaviors property * fix: undo py changes * fix: under some changes * refactor: synx with master * fix: undo FF * fix: undo FF * lint: ts-ignore * chore: update lock file * refactor: update enum * refactor: naming of enum * test: fix test * test: update mocks Co-authored-by: amitmiran137 <[email protected]>
…WINDOW option (apache#13157) * fix: thumbnails and reports will be use WEBDRIVER_WINDOW option * changes reformatted * config change reverted. thumbnails sizes changed to original * typo fix * bugfix defining defaults in thumbnails.py caused thumbnail caches invalidated. they moved to init. Co-authored-by: Ibrahim Ercan <[email protected]>
* bump pyarrow and pandas * remove df copy
LGTM from UI with the feature flag on and off. |
Co-authored-by: John Bodley <[email protected]>
* Add tests for ErrorAlert * Add BasicErrorAlert tests * Add DatabaseErrorMessage tests * Add useRedux property * Finalize DatabaseErrorMessage tests * Add ErrorMessageWithStackTrace tests * Move getErrorMessageComponentRegistry test to dedicated directory * Clean up getErrorMessageComponentRegistry * Add IssueCode tests * Add tests for ParameterErrorMessage * Add tests for TimeoutErrorMessage * Fix linting issue
* feat(dashboard_rbac): manage roles for dashboard * test: fix tests * fix: fix empty roles Co-authored-by: Amit Miran <[email protected]>
* added URL rerouting from old alerts & reports page to new one * edited SQL Server, Rockset, db ordering, and link that Superset logo in left corner takes you to * added Trino logo and firebird connection string and removed bigquery trailing comma * added ROckset logo * changed db list ordering for firebird * tweaked presnetation of firebird connection string
* annotation layer modal err handling * address comments
* refactor: add set data mask to build query * refactor: update hooks placement
The correct spelling is Foundation
…3425) Co-authored-by: michelle_thomas <[email protected]>
* add custom error pages for 404 and 500 responses * refactor error page styles into separate template * move error pages to superset-frontend * fix whitespace on error pages * refactor error pages to be generated by jinja * generate static error pages with webpack
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.
Bug review reported here: #13210 (comment)
When entering a new chart, an error occurs and the application freezes.

The error message points out that it is because an array is expected but an object is being sent.
As shown in the image:
With this fix, I started to send the object's values as an array:

The application stopped freezing, but I was unable to test if it is working correctly:

Attention points:
src/explore/components/Control.tsx
My guess:
When activating the Feature Flag, some changes in the response of the APIS started to cause this unwanted behavior.