Skip to content

Commit

Permalink
Use dash~=1.7. Remove hidden dash table (#161)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hans Kallekleiv authored Nov 28, 2019
1 parent 28a9ad5 commit dbc249b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
},
entry_points={"console_scripts": ["webviz=webviz_config.command_line:main"]},
install_requires=[
"dash~=1.1",
"dash~=1.7",
"bleach~=3.1",
"cryptography~=2.4",
"flask-caching~=1.4",
Expand All @@ -41,7 +41,7 @@
"pandas~=0.24",
"pyarrow~=0.11",
"pyyaml~=5.1",
"webviz-core-components>=0.0.10",
"webviz-core-components>=0.0.12",
],
tests_require=TESTS_REQUIRES,
extras_require={"tests": TESTS_REQUIRES},
Expand Down
7 changes: 0 additions & 7 deletions webviz_config/templates/webviz_template.py.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ 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
Expand Down Expand Up @@ -107,12 +106,6 @@ 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 }}""")
Expand Down

0 comments on commit dbc249b

Please sign in to comment.