davanstrien HF staff commited on
Commit
6f8c407
1 Parent(s): 0fa41ed

switch order of rating buttons

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -232,8 +232,8 @@ with gr.Blocks() as iface:
232
  output = gr.Markdown(label="Generated Data")
233
 
234
  with gr.Row():
235
- thumbs_up = gr.Button("👍 Thumbs Up", interactive=False)
236
  thumbs_down = gr.Button("👎 Thumbs Down", interactive=False)
 
237
 
238
  feedback_output = gr.Markdown(label="Feedback Status")
239
 
 
232
  output = gr.Markdown(label="Generated Data")
233
 
234
  with gr.Row():
 
235
  thumbs_down = gr.Button("👎 Thumbs Down", interactive=False)
236
+ thumbs_up = gr.Button("👍 Thumbs Up", interactive=False)
237
 
238
  feedback_output = gr.Markdown(label="Feedback Status")
239