This is something that I have began noticing lately. I have a dataframe in Gradio like
dataframe_output = gr.DataFrame(
label="Results Dataframe",
headers=["Image Path"], # , "Result", "Check"],
wrap=True,
interactive=False,
type="array",
height=400
)
This dataframe receives data from a function and displays it correctly. It also responds to clicking on it.
The only thing that bugs me is that when I roll the mouse on it to see the lower rows, the height of the datafame dynamically increases.
Which is not a big error in the behavior of my application but still bothers the easy of use of the application
Does anyone knows how to set the height? (As you see I have tried with height=400
)