diff --git a/webviz_config/templates/webviz_template.py.jinja2 b/webviz_config/templates/webviz_template.py.jinja2 index 073f2dca..5c817170 100644 --- a/webviz_config/templates/webviz_template.py.jinja2 +++ b/webviz_config/templates/webviz_template.py.jinja2 @@ -14,6 +14,7 @@ from pathlib import Path, PosixPath import dash import dash_core_components as dcc import dash_html_components as html +import dash_table from flask_talisman import Talisman import webviz_config from webviz_config.common_cache import CACHE @@ -106,6 +107,12 @@ else: className="styledButton", {%- endif -%} children=[ + {%- if loop.first -%} + html.Div( + id="dash-issue-#1010", + style={"display":"none"}, + children=dash_table.DataTable()), + {%- endif -%} {% for content in page.content -%} {%- if content is string -%} dcc.Markdown(r"""{{ content }}""")