-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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
Shim getFormat function correctly #60032
Conversation
@elasticmachine merge upstream |
Pinging @elastic/kibana-app (Team:KibanaApp) |
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.
Code LGTM 👍 , tested locally in Chrome, works as expected!
@@ -26,7 +26,7 @@ function tableResponseHandler(table, dimensions) { | |||
if (split) { |
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.
Just a note: I think we can further cleanup the discover part, since it doesn't use splitColumn
, splitRow
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.
however, doesn't need to be in this PR, just loud thinking :)
@elasticmachine merge upstream |
💚 Build SucceededHistory
To update your PR or re-run it, just comment with: |
In a bunch of places in shimmed visualizations the
getFormat
function was used via legacy import. Since this has been migrated as a stateful API, this PR moves it into the shim by passing it through the plugin class.This is preparing the visualizations to get moved to the new platform once the
visualizations
plugin is ready.