Skip to content

Commit

Permalink
remove duplicate store-uuids
Browse files Browse the repository at this point in the history
This store is already declared in app_sidebar_collapsible (which is global to the entire app)
Redeclaring it on this page, I think does nothing, but it might cause issues because dash doesn't expect 2 components with the same ID. removing it
  • Loading branch information
JGreenlee committed Dec 17, 2024
1 parent f9c0c8f commit f7b773d
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion pages/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
]),
html.Div(id='tabs-content'),
dcc.Store(id='selected-tab', data='tab-uuids-datatable'), # Store to hold selected tab
dcc.Store(id='store-uuids', data=[]), # Store to hold the original UUIDs data
dcc.Store(id='store-loaded-uuids', data=[]), # Store to track loaded data
dcc.Store(id='uuids-page-current', data=0), # Store to track current page for UUIDs DataTable
# RadioItems for key list switch, wrapped in a div that can hide/show
Expand Down

0 comments on commit f7b773d

Please sign in to comment.