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 19, 2024
1 parent 29a4a08 commit 616f7da
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='loaded-uuids-stats', data=[]),
dcc.Store(id='all-uuids-stats-loaded', data=False),
dcc.Store(id='uuids-page-current', data=0), # Store to track current page for UUIDs DataTable
Expand Down

0 comments on commit 616f7da

Please sign in to comment.