versae commited on
Commit
1187d60
·
verified ·
1 Parent(s): f511d18

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -235,12 +235,12 @@ with gr.Blocks(title="Summary Chooser", css=css) as interface:
235
  # Clickable summary boxes
236
  with gr.Row(equal_height=True):
237
  with gr.Column():
238
- with gr.Box(elem_classes=["clickable-summary"]) as summary_a_box:
239
  summary_a_title = gr.Markdown("### Summary A")
240
  summary_a = gr.TextArea(label="", lines=5, interactive=False)
241
 
242
  with gr.Column():
243
- with gr.Box(elem_classes=["clickable-summary"]) as summary_b_box:
244
  summary_b_title = gr.Markdown("### Summary B")
245
  summary_b = gr.TextArea(label="", lines=5, interactive=False)
246
 
 
235
  # Clickable summary boxes
236
  with gr.Row(equal_height=True):
237
  with gr.Column():
238
+ with gr.Group(elem_classes=["clickable-summary"]) as summary_a_box:
239
  summary_a_title = gr.Markdown("### Summary A")
240
  summary_a = gr.TextArea(label="", lines=5, interactive=False)
241
 
242
  with gr.Column():
243
+ with gr.Group(elem_classes=["clickable-summary"]) as summary_b_box:
244
  summary_b_title = gr.Markdown("### Summary B")
245
  summary_b = gr.TextArea(label="", lines=5, interactive=False)
246