Skip to content

Commit 4ec67e6

Browse files
committed
upd to dmt v >2
1 parent f329eba commit 4ec67e6

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

app.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,12 @@
3838
value="Conc.",
3939
multiple=False,
4040
children=[
41-
dmc.Chip(value="Conc.", label="Concentration"),
42-
dmc.Chip(value="Response", label="Response"),
43-
dmc.Chip(value="Area", label="Area"),
41+
# dmc.Chip(value="Conc.", label="Concentration"),
42+
# dmc.Chip(value="Response", label="Response"),
43+
# dmc.Chip(value="Area", label="Area"),
44+
dmc.Chip(value="Conc.", children="Concentration"),
45+
dmc.Chip(value="Response", children="Response"),
46+
dmc.Chip(value="Area", children="Area"),
4447
],
4548
),
4649
dmc.Checkbox(id="includeIS", label="Include internal Stds")
@@ -142,4 +145,4 @@ def update_output(list_of_contents, list_of_names, vtype, include_is):
142145
return [html.Div([html.Hr(), table])], [html.Hr(), download_btn], summary
143146

144147
if __name__ == '__main__':
145-
app.run_server(debug=True, host='0.0.0.0', port=8050)
148+
app.run(debug=True, host='0.0.0.0', port=8050)

0 commit comments

Comments
 (0)