Zachary Blackwood
Zachary Blackwood
@PaulShin83 I don't see that issue when I fun the following script with streamlit==1.11.0 and streamlit-folium==0.6.13 ```python import streamlit as st from streamlit_folium import st_folium import folium def draw_folium_map(): center...
@PaulShin83 I tried reproducing what you are seeing, and I am not seeing any rerendering issue. Here is a hosted version of your app https://blackary-folium-bug-streamlit-app-rpsil3.streamlitapp.com/. Are you seeing the repeated...
@daniyal-d Thanks for sharing this. In general, this is the expected behavior from streamlit widgets, and the general recommendation is that if you have slow functions that you'd like not...
That code isn't quite fully functional, because of some missing data variables. I tried pulling out various pieces of it, but was unable to reproduce that error. Would you either...
Hi @KassiusKlay, thanks for the very clear code and gif showing the error. I just tried this with the latest version of streamlit-folium, and all 4 popups worked for me....
@KassiusKlay It appears to be a Safari-specific bug. I don't have an obvious fix at this point, but hopefully will eventually. Thankfully, in the meantime, there's an easy workaround of...
[See the app here](https://playground.streamlitapp.com/?q=empty-doesnt-work) to see issue for container entries in general, and how it can be fixed by adding a sleep after emptying
Any updates on this?
@mre Nothing much to add -- I used my own index.js, and got pretty much the same response: ``` tinysearch index.js Unpacking tinysearch WASM engine into temporary directory "/var/folders/1r/hd1d6v0s7hx68wnb2y1_9pd40000gn/T/.tmpt9tVy4" Start...
One monkey-patch solution which seems to work for my use-case: ```python from botocore.awsrequest import AWSResponse class MonkeyPatchedAWSResponse(AWSResponse): raw_headers = {} async def read(self): return self.text botocore.awsrequest.AWSResponse = MonkeyPatchedAWSResponse ```