Lukas Masuch
Lukas Masuch
Hmm, the screenshot in the cypress test looks bit strange
@willhuang1997 I think you can solve this `add_rows` problem also with a layout effect, e.g. (above the fullscreen layout effect): ```typescript React.useLayoutEffect(() => { if (resizableRef.current) { // Reset the...
Closing this since I reopened the initial bug issue: https://github.com/streamlit/streamlit/issues/4322 We should probably fix it so that it works out of the box.
Images seem to be blocked by my Adblock chrome extension (Adblock Plus). Everything is fine in incognito mode. But I don't think this was happening the last time I checked...
@YeshwanthRams What Streamlit version are you using? We recently released some improvements related to this issue, it might be working fine with the most recent Streamlit version.
@YeshwanthRams it would be great if you would run and share the results of the following code on the original dataframe (with the object types): ```python from pandas.api.types import infer_dtype...
@YeshwanthRams Thanks :) The issue is that pandas is interpreting the columns as mixed-integer, indicating that the column contains integers mixed with non-integers. Do you know if your columns contain...
Yep, I assume this might have been the issue of why it is interpreted as `mixed-integer` 👍
@sfc-gh-dmatthews Yep, that indeed looks like that `date_input` is broken in this case. In the case of number_input we are only checking this for `value` if it's not None: https://github.com/streamlit/streamlit/blob/55bba786dcc8dd85e724746cd26bba3018a147bc/lib/streamlit/elements/widgets/number_input.py#L377...
The next Streamlit version will add a `hide_index` argument to `st.dataframe` and `st.data_editor` for hiding the index of the dataframe: ```python st.dataframe(my_df, hide_index=True) ```