freddyaboulton HF Staff commited on
Commit
a9bdfe9
·
verified ·
1 Parent(s): 37bf6c7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -71,9 +71,8 @@ with gr.Blocks() as demo:
71
  comments = gr.Textbox(label="Comments", lines=10, placeholder="Do you have any feedback on gradio?")
72
  submit = gr.Button(value="Submit Feedback")
73
  with gr.Column():
74
- with gr.Box():
75
- gr.Markdown("Most recently created 10 rows: See full dataset [here](https://huggingface.co/datasets/freddyaboulton/gradio-reviews)")
76
- data = gr.Dataframe()
77
  count = gr.Number(label="Total number of reviews")
78
  submit.click(add_review, [name, review, comments], [data, count])
79
  demo.load(load_data, None, [data, count])
 
71
  comments = gr.Textbox(label="Comments", lines=10, placeholder="Do you have any feedback on gradio?")
72
  submit = gr.Button(value="Submit Feedback")
73
  with gr.Column():
74
+ gr.Markdown("Most recently created 10 rows: See full dataset [here](https://huggingface.co/datasets/freddyaboulton/gradio-reviews)")
75
+ data = gr.Dataframe()
 
76
  count = gr.Number(label="Total number of reviews")
77
  submit.click(add_review, [name, review, comments], [data, count])
78
  demo.load(load_data, None, [data, count])