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
For November 2017 and versions above, prefix is not being identified properly
The current logic to determine the prefix is based on keyword '/sense' in the url. This should change to '/extensions'
Current: var prefix = window.location.pathname.substr(0, window.location.pathname.toLowerCase().lastIndexOf('/sense') + 1);
Should change to: var prefix = window.location.pathname.substr(0, window.location.pathname.toLowerCase().lastIndexOf('/extensions') + 1);
The prefix should be identified properly as expected
Chrome
All OS
[ ] Windows [ ] OSX [ ] Linux
All
[ ] Desktop [ ] Enterprise
[ ] Chrome [ ] Firefox [ ] Internet Explorer [ ] Edge [ ] Others: XXX
The text was updated successfully, but these errors were encountered:
I forgot to mention that this happens only in mashups.
Sorry, something went wrong.
No branches or pull requests
Description
For November 2017 and versions above, prefix is not being identified properly
Steps to Reproduce
The current logic to determine the prefix is based on keyword '/sense' in the url.
This should change to '/extensions'
Current:
var prefix = window.location.pathname.substr(0, window.location.pathname.toLowerCase().lastIndexOf('/sense') + 1);
Should change to:
var prefix = window.location.pathname.substr(0, window.location.pathname.toLowerCase().lastIndexOf('/extensions') + 1);
Expected behavior
The prefix should be identified properly as expected
Environment
Chrome
Operating system
All OS
Qlik Sense
All
Browser
All
The text was updated successfully, but these errors were encountered: