Spaces:
Runtime error
Runtime error
Hritik
commited on
Commit
·
bd06668
1
Parent(s):
534b4d3
remove max rows
Browse files
app.py
CHANGED
@@ -43,7 +43,7 @@ with gr.Blocks() as demo:
|
|
43 |
b2 = gr.Button("Next Rows")
|
44 |
|
45 |
with gr.Row():
|
46 |
-
out_dataframe = gr.Dataframe(initial_dataframe, wrap=True,
|
47 |
interactive=False, datatype = ['str', 'str', 'str', 'str', 'str'])
|
48 |
|
49 |
b1.click(fn=display_df, outputs=out_dataframe, api_name="initial_dataframe")
|
|
|
43 |
b2 = gr.Button("Next Rows")
|
44 |
|
45 |
with gr.Row():
|
46 |
+
out_dataframe = gr.Dataframe(initial_dataframe, wrap=True, overflow_row_behaviour="paginate",
|
47 |
interactive=False, datatype = ['str', 'str', 'str', 'str', 'str'])
|
48 |
|
49 |
b1.click(fn=display_df, outputs=out_dataframe, api_name="initial_dataframe")
|