ChristianIO
Results
2
comments of
ChristianIO
I implemented a workaround for a similar issue, perhaps it works in your case, too: ``` componentDidMount(){ if(this.scrollAreaComponent){ setTimeout(this.scrollAreaComponent.scrollArea.refresh, 100); } } render(){ ... {this.scrollAreaComponent = component}} ... > ......
@janejanejane In my case, pictures have not been loaded fast enough and the scrollbar could not render with the correct height. I rechecked my code due to your question and...