Spaces:
Runtime error
Runtime error
update
Browse files
app.py
CHANGED
@@ -33,7 +33,7 @@ with gr.Blocks() as demo:
|
|
33 |
b2 = gr.Button("Next 10 Rows")
|
34 |
|
35 |
with gr.Row():
|
36 |
-
out_dataframe = gr.Dataframe(wrap=True, max_rows=10, overflow_row_behaviour= "paginate", datatype = ["markdown", "markdown", "str", "str", "str", "str", "str", "str"])
|
37 |
|
38 |
b1.click(fn=display_df, outputs=out_dataframe)
|
39 |
b2.click(fn=display_next10, inputs= [out_dataframe, num_end ], outputs=[out_dataframe, num_end])
|
|
|
33 |
b2 = gr.Button("Next 10 Rows")
|
34 |
|
35 |
with gr.Row():
|
36 |
+
out_dataframe = gr.Dataframe(wrap=True, max_rows=10, overflow_row_behaviour= "paginate", datatype = ["markdown", "markdown", "str", "str", "str", "str", "str", "str"], interactive=False)
|
37 |
|
38 |
b1.click(fn=display_df, outputs=out_dataframe)
|
39 |
b2.click(fn=display_next10, inputs= [out_dataframe, num_end ], outputs=[out_dataframe, num_end])
|