-
Notifications
You must be signed in to change notification settings - Fork 14.1k
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
dashboard export issue #2667
Comments
Which version of superset? |
0.15.1 |
Please reproduce with latest version |
I try it , thanks! |
I upgrade the superset to 0.17.5 , but the issue is the same as before. |
https://github.com/airbnb/superset/blob/master/superset/views/core.py#L474 http://flask-appbuilder.readthedocs.io/en/latest/actions.html?highlight=action ``` @action("mulexport", __("Export"), __("Export dashboards?"), "fa-database") def mulexport(self, items): ids = ''.join('&id={}'.format(d.id) for d in items) ``` change to ``` @action("mulexport", __("Export"), __("Export dashboards?"), "fa-database") def mulexport(self, items): if not isinstance(items, list): items = [items] ids = ''.join('&id={}'.format(d.id) for d in items) ``` fixed: #2184 #2667
Hi all I am on 0.21.x ( 0.21.0Dev and 0.21.1 ) |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. For admin, please label this issue |
Sorry, something went wrong
500 - Internal Server Error
Stacktrace
The text was updated successfully, but these errors were encountered: