You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when I create 2 agraphs on a page, streamlit complains:
streamlit.errors.DuplicateWidgetID: There are multiple identical `st.streamlit_agraph.agraph` widgets with the
same generated key.
When a widget is created, it's assigned an internal key based on
its structure. Multiple widgets with an identical structure will
result in the same internal key, which causes this error.
To fix this error, please pass a unique `key` argument to
`st.streamlit_agraph.agraph`.
but trying to do so ends up in an Uncaught app exception - TypeError: agraph() got an unexpected keyword argument 'key'
can we please allow agraph to accept the key argument ? does it make sense to have 2 agraphs on a page ?
The text was updated successfully, but these errors were encountered:
when I create 2 agraphs on a page, streamlit complains:
but trying to do so ends up in an
Uncaught app exception - TypeError: agraph() got an unexpected keyword argument 'key'
can we please allow agraph to accept the key argument ? does it make sense to have 2 agraphs on a page ?
The text was updated successfully, but these errors were encountered: