updated id strings

This commit is contained in:
Brian Bjarke Jensen
2024-02-23 23:26:19 +01:00
parent e5344e6519
commit b2c4f97b9c
3 changed files with 18 additions and 14 deletions
+6 -3
View File
@@ -1,6 +1,9 @@
from dash import html, dcc
stores_element = html.Div([
dcc.Store(id='visual-communication-name', storage_type='session'),
])
stores_element = html.Div(
children=[
dcc.Store(id="alert-message", storage_type="session"),
dcc.Store(id="visual-communication-name", storage_type="session"),
]
)