Update app.py
Browse files
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.
|
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.
|
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 |
|