Skip to content
Snippets Groups Projects
Commit 928f5332 authored by Jim Hoekstra's avatar Jim Hoekstra :wave_tone1:
Browse files

fix bug concerning wrong initialization of the graph when multiple users...

fix bug concerning wrong initialization of the graph when multiple users access the webpage (at least I think that was the issue...)
parent b1489f25
Branches
Tags
1 merge request!8fix bug concerning wrong initialization of the graph when multiple users...
...@@ -33,7 +33,7 @@ app.layout = html.Div(children=[ ...@@ -33,7 +33,7 @@ app.layout = html.Div(children=[
html.H2(children='Term:'), html.H2(children='Term:'),
]), ]),
html.Div(className='col-9', children=[ html.Div(className='col-9', children=[
dcc.Input(id='base-word-input', value='', type='text', className='form-control form-control-lg'), dcc.Input(id='base-word-input', value='fruit', type='text', className='form-control form-control-lg'),
]), ]),
html.Div(className='col-2', children=[ html.Div(className='col-2', children=[
html.Button(id='submit-word-button', n_clicks_timestamp=0, children='Submit Term', className='btn btn-success btn-lg')]), html.Button(id='submit-word-button', n_clicks_timestamp=0, children='Submit Term', className='btn btn-success btn-lg')]),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment