Web app shows blank page sometimes randomly

Hello,
I am encountering an issue with my Streamlit application[Chatbot] , where a blank page randomly appears for a random query. I’ve tried using the dataFrameSerialization = “legacy” approach, but the issue persists. When inspecting the page, the errors I’m seeing look like the following:
TypeError: Cannot read properties of undefined (reading ‘vertical’)
at Di (main, 1661a802.js:2:4213879)
at wa (main. 1661a802.js:2:2230016)
at wl (main.1661a802.js:2:2287129)
at ze (main.1661a802.js:2:2276235)
at Oc (main.1661a802.js:2:2276163)
at Mc (main. 1661a802.js:2:2276026)
at cc (main, 16612802.js:2:2273142)
at Uo (moin. 1661a802.js:2:2213737)
at rc (main.1661a802.js:2:2270229)
at Object.enqueueSetState (main.1661a802.js:2:2220755)
Uncaught TypeError: Cannot read properties of undefined (reading ‘vertical’)
at Di (main. 1661a802.js:2:4213879)
at wa (main.1661a802.js:2:2230016)
at wl (moin.1661a802.js:2:2287129)
at zc (main.16618802.js:2:2276235)
at Oc (main. 1661a802.js:2:2276163)
at Mc (main.1661a802.js:2:2276026)
at cc (main.1661a802.js:2:2273142)
at Uo (main. 1661a802.js:2:2213737)
at rc (main.1661a802.js:2:2270229)
at Object.enqueueSetState (main, 1661a802.js:2:2220755)
Any insights on how to address this would be greatly appreciated.

Thank you!

2 Likes

Hi @user11

Do you have a link to the repo, please?

Thanks,
Charly

Hi Charly,

Thanks for reaching out!. I am unable to share the repository outside of my organization. If there’s anything specific you’d like to know or if you have any suggestions based on the error message provided, I’d be happy to discuss further.

Regards,
Venu

Certainly!

It’s a bit difficult to diagnose the issue without seeing the code, but there doesn’t seem to be anything obvious in the error trace you’ve provided.

To proceed by elimination, it might be helpful to try deploying the app and checking the Streamlit version in your requirements.txt file to ensure it’s the correct one.

Best,
Charly

I am encountering this issue[showing the blank page] in local and deployed one also.

even I checked the backend logs in both[local and deployed] its working fine, I mean there are no errors and interrupts.

when I inspect the black page, able to see these kind of errors
TypeError: Cannot read properties of undefined (reading ‘vertical’)
at Di (main, 1661a802.js:2:4213879)
at wa (main. 1661a802.js:2:2230016)
at wl (main.1661a802.js:2:2287129)
at ze (main.1661a802.js:2:2276235)
at Oc (main.1661a802.js:2:2276163)
at Mc (main. 1661a802.js:2:2276026)
at cc (main, 16612802.js:2:2273142)
at Uo (moin. 1661a802.js:2:2213737)
at rc (main.1661a802.js:2:2270229)
at Object.enqueueSetState (main.1661a802.js:2:2220755)
Uncaught TypeError: Cannot read properties of undefined (reading ‘vertical’)
at Di (main. 1661a802.js:2:4213879)
at wa (main.1661a802.js:2:2230016)
at wl (moin.1661a802.js:2:2287129)
at zc (main.16618802.js:2:2276235)
at Oc (main. 1661a802.js:2:2276163)
at Mc (main.1661a802.js:2:2276026)
at cc (main.1661a802.js:2:2273142)
at Uo (main. 1661a802.js:2:2213737)
at rc (main.1661a802.js:2:2270229)
at Object.enqueueSetState (main, 1661a802.js:2:2220755)

Streamlit version : 1.32.0

Thanks,
Venu

Hi @Charly_Wargnier @user11 I’m also having the same issue with the same type error message. Did you have a chance to find the reason and fix this error? Any comment would be grateful!

Hi @mleeee

I don’t have a fix yet. Let’s hope someone in the community can help us out. We’ll keep each other posted if we find a solution.

Thanks for reaching out!

@mleeee could you share a repo, please?

Thanks,
Charly

Hi @Charly_Wargnier I’ve downgraded to 1.26.0 and now that JS failing error is gone. I think the streamlit dev team should know about these issues for the version >=1.32.0, as I’ve seen several discussion posts talking about this issue TypeError: Cannot read properties of undefined (reading ‘vertical’) but nobody found the solutions yet.

Thanks @mleeee, but as requested, I think it would be helpful if you could share your repo so we could diagnose further. Hopefully, this is something you can do?

Best,
Charly

I’m also getting the same error.

I’m using version 1.32.0.

It does occur in a more complex structure of tabs that contain expander components with quite some content. Not sure if it could have something to do with loading or the nested structure of components?

Anyway, I can not consistently reproduce it myself. Sometimes it crashes after 2 clicks, than 5 clicks, etc…

The time that I wait between clicks also does not seem to have any influence. Sometimes it does also crash after I wait for 10s to retrieve the next content. (Content is loaded from session states)

No error messages from streamlit in the terminal. Only error message I have is in the image.

I did also downgrade to version 1.26.0 and that resolved the above issue that I’m facing in version 1.32.0

I saw same issue when i use button to rerun() streamlit

I’m also having the same problem (Streamlit 1.32.2). Like others have been saying:

  • The error is not easily reproducible.
  • It seems to be related to more complex layout, maybe due to nested columns, or tabs with heavy content, it’s hard to tell.

I cannot share my code, but I can show a little gif of the error occurring:
blank-error

The page goes blank after I select “Origem” and the console says:
image

As you can see, I have 3 main columns (the second one being just a separator), and the first has multiple columns within. I don’t know if this helps streamlit devs to pinpoint the error.

This bug also occurred in 1.36.0 and can be 100% replicated in my project. I tried to write an example code, but I couldn’t reproduce the problem. It seems that this problem is a bit difficult to handle.

@Charly_Wargnier I encountered another error while trying to write sample code about this error, and I am not sure if it is related to the error mentioned earlier.
Python==3.12.3
streamlit==1.36.0
Here is my code:

import streamlit as st


dataframe_settings_all = {
    'database': ['table1', 'table2', 'table3'],
    'file': ['file1.csv', 'file2.csv'],
    'sql': ['select * from table']
}


with st.sidebar:
    select = st.selectbox('select_app', ['app1', 'app2'])
    st.divider()
    check1 = st.checkbox('database')
    check2 = st.checkbox('file')
    check3 = st.checkbox('sql')
    upload_files = st.file_uploader(label='upload file:', accept_multiple_files=True, type=["csv", 'xlsx', 'xls'],
                                    help='upload data file', label_visibility='visible')

    tab_list = []
    dataframe_settings = {}

    if check1:
        tab_list.append("database")
        dataframe_settings['database'] = dataframe_settings_all['database']
    if check2:
        tab_list.append("file")
        dataframe_settings['file'] = dataframe_settings_all['file']
    if check3:
        tab_list.append("sql")
        dataframe_settings['sql'] = dataframe_settings_all['sql']

if select == 'app1':
    st.write('app1')
    with st.expander("About"):
        st.write("XXXXXXX")
    text = st.text_input("input text:")
elif select == 'app2':
    with st.expander("About"):
        st.write("YYYYYYYY")
    if len(tab_list) > 0:
        tab_objs = st.tabs(tab_list)
        tab_dict = {k: v for k, v in zip(tab_list, tab_objs)}
        for dataframe_type, dataframe_setting in dataframe_settings.items():
            if len(dataframe_setting) == 0:
                continue
            with tab_dict[dataframe_type]:
                for i, name in enumerate(dataframe_setting):
                    with st.expander(name, expanded=i == 0):
                        st.write(f'{dataframe_type}: {name}')
    else:
        st.error('Please select at least one type of data source.')

st.write(f'you checked tabs: {tab_list}')

Reproduction steps:

  1. Check ['database ‘,’ file '] on the left side
  2. Then select app 1 and app 2 repeatedly in the “select app” (it doesn’t seem to have much to do with the speed of switching), switching about 10 times
    An error will occur

1719910402439

Had the same issue too. Dowgraded to 1.26 seems to solve it.

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.