rijojoseph07 commented on issue #11992:
URL:
https://github.com/apache/incubator-superset/issues/11992#issuecomment-742445001
I was able to fix this by changing a small change in
`superset/views/chart/views.py`
Changed json.dumps to jsons.dumps
` return self.render_template(
"superset/add_slice.html", bootstrap_data=json.dumps(payload)
)
`
to
` return self.render_template(
"superset/add_slice.html", bootstrap_data=jsons.dumps(payload)
)
`
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]