Setting height of `ipyaggrid` in Solara app gives error
Hi, how can I set the
height of a ipyaggrid that is being cross-filtered by a solara component? I am using @MaartenBreddels 's snippet here general. However, if I pass an integer height to the grid element like this ipyaggrid.Grid.element(..., height=500) it renders fine but then leads to this error: trait of a Grid instance expected a unicode string, not the int 500, whenever the data is filtered. Could it be a bug in ipyaggrid where the widget expects height to be an int but the trait is defined as unicode, leading to data type issues? I found a workaround but wonder if I am missing something or if there is a better approach. Thanks!