Skip to content

Commit

Permalink
fix image width to 1000px for email (#14527)
Browse files Browse the repository at this point in the history
  • Loading branch information
lilykuang committed May 10, 2021
1 parent e21beb7 commit adbe56c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion superset/reports/notifications/email.py
Expand Up @@ -76,7 +76,7 @@ def _get_content(self) -> EmailContent:
""",
description=self._content.description or "",
url=self._content.url,
img_tag='<img src="cid:{}">'.format(msgid)
img_tag='<img width="1000px" src="cid:{}">'.format(msgid)
if self._content.screenshot
else "",
)
Expand Down

0 comments on commit adbe56c

Please sign in to comment.