lilila opened a new issue #12681:
URL: https://github.com/apache/superset/issues/12681
I have an issue with pivot table I didn't have using version 0.38.
I use to display links (either links or images) in table cells. It always
worked in simple Table and it is still working.
With the previous version of superset I was able to display images as well
within Pivot Table (it was necessary to add `escape = False` in df.to_html()
in superset/viz.py)
With the current version (1.0) if if print what is returned in viz.py I have
:
```
<tr>
<th>3</th>
<td><a
href="https://www.allocine.fr/film/fichefilm_gen_cfilm=275832.html"
target="_blank"><img
src="http://fr.web.img4.acsta.net/pictures/20/08/05/09/21/0019416.jpg",
height=60></a></td>
<td>263184</td>
<td><a
href="http://www.allocine.fr/film/fichefilm_gen_cfilm=275832.html"
target="_blank">ANTEBELLUM</a></td>
</tr>
```
If I look at what is rendered in the chart, I have the following
```
<tr>
<th>3</th>
<td></td>
<td>263k</td>
<td>ANTEBELLUM</td>
</tr>
```
----------------------------------------------------------------
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]