You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@superset.apache.org by GitBox <gi...@apache.org> on 2020/12/10 10:53:50 UTC

[GitHub] [incubator-superset] rijojoseph07 edited a comment on issue #11992: Broken chart creation.

rijojoseph07 edited a comment on issue #11992:
URL: https://github.com/apache/incubator-superset/issues/11992#issuecomment-742445001


   I was able to fix this by making 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:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@superset.apache.org
For additional commands, e-mail: notifications-help@superset.apache.org