We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
kibana 5.4.2
I got this error not being able to do .get of undefined
It seemed to be caused by an import at the top of each .js file, which used the import to do a . get.
I changed each of those to use require, like this:
const module = require('ui/modules').get('kibana/gantt_vis', ['kibana']);
which got past those exceptions.
However, once Kibana loaded, the UI for all of the tabs in the navigation menu were messed up.
I would really like to use this plugin. Is there a version that works with 5.4.2? If not, how do I fix it?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
kibana 5.4.2
I got this error not being able to do .get of undefined
It seemed to be caused by an import at the top of each .js file, which used the import to do a . get.
I changed each of those to use require, like this:
const module = require('ui/modules').get('kibana/gantt_vis', ['kibana']);
which got past those exceptions.
However, once Kibana loaded, the UI for all of the tabs in the navigation menu were messed up.
I would really like to use this plugin. Is there a version that works with 5.4.2? If not, how do I fix it?
The text was updated successfully, but these errors were encountered: