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
I am having an issue when I include multiple st_quill editors in a dialog (using @st.dialog decorator).
Here is a minimal working example of the bug:
importstreamlitasstfromstreamlit_quillimportst_quill@st.dialog("This is dialog")defdialog():
title=st_quill("This is a title", toolbar=False, html=False)
date=st_quill("This is a date", toolbar=False, html=False)
intro=st_quill("This is a intro", toolbar=False, html=False)
body=st_quill("This is a body", toolbar=False, html=False)
click=st.button("Click me")
ifclick:
st.markdown(f"Title: {title}")
st.markdown(f"Date: {date}")
st.markdown(f"Intro: {intro}")
st.markdown(f"Body: {body}")
dialog()
This does work with just a single editor, but it starts breaking when adding a second one. It is also not consistent, sometimes it works and all the editors appear, but most often they do not.
This is an important functionality for us. Would it be possible to find a fix?
Thank you!!
The text was updated successfully, but these errors were encountered:
Hello,
I am having an issue when I include multiple
st_quill
editors in a dialog (using@st.dialog
decorator).Here is a minimal working example of the bug:
This does work with just a single editor, but it starts breaking when adding a second one. It is also not consistent, sometimes it works and all the editors appear, but most often they do not.
This is an important functionality for us. Would it be possible to find a fix?
Thank you!!
The text was updated successfully, but these errors were encountered: