Hi I am relatively new to developing apps using dash.
I am using JupyterDash(). I am unable to see the updates on the web browser after making a change and saving and refreshing the browser.
This link (My web app doesnt update in my browser when i make any changes to the code) suggested to changing the port, but then every time I make an update I have to change the port, which I think is not the correct way of doing this.
Could you please help. Here is a minimal example I am trying at the moment.
Thanks
app = JupyterDash(name)
app.layout = html.Div([
html.H1(‘My Title’),
html.P(“Select a date:”),
dcc.Dropdown(
id=‘date’,
options=[‘2022-11-30’, ‘2022-12-31’],
value = ‘2022-11-30’
# inline=True
),
dcc.Graph(id=“graph”),
])