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
If there is no cleaning to be done in the input text of the document, the app crashes.
Reproduction
Run demo app
Create empty file file.md and inside write This is an example
Upload file to app
Crash
Relevant log output
DuplicateWidgetID: There are multiple identical st.text_area 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.text_area.Traceback:File "/.../demo/app.py", line 81, in <module> st.text_area(f"Total Length: {len(clean_text)}", f"{clean_text[:500]} . . .")
Expected behavior
Not to crash
System Info
OS: Ubuntu
Branch: main
Have you searched for similar issues before submitting this one?
Yes, I have searched for similar issues
The text was updated successfully, but these errors were encountered:
Description
If there is no cleaning to be done in the input text of the document, the app crashes.
Reproduction
file.md
and inside writeThis is an example
Relevant log output
Expected behavior
Not to crash
System Info
main
Have you searched for similar issues before submitting this one?
The text was updated successfully, but these errors were encountered: