geronimo-pericoli
commited on
Commit
•
a88b91b
1
Parent(s):
d668c2b
Update app.py
Browse files
app.py
CHANGED
@@ -484,6 +484,10 @@ table {
|
|
484 |
#btn_select {
|
485 |
width:100px;
|
486 |
}
|
|
|
|
|
|
|
|
|
487 |
"""
|
488 |
|
489 |
choices_with_tools = [
|
@@ -682,7 +686,7 @@ with gr.Blocks(theme='sudeepshouche/minimalist', css=css) as demo:
|
|
682 |
with gr.Column():
|
683 |
with gr.Accordion(elem_classes="accordion", label="Bases de datos del conocimiento", open=False):
|
684 |
# CheckboxGroup
|
685 |
-
chx = gr.CheckboxGroup(choices=choice_labels, value=choice_labels, show_label=False)
|
686 |
chx.select(fn=update_selected_choices, inputs=chx)
|
687 |
|
688 |
# Seleccionar/deseleccionar todos
|
|
|
484 |
#btn_select {
|
485 |
width:100px;
|
486 |
}
|
487 |
+
|
488 |
+
#select_list label {
|
489 |
+
width: 100%;
|
490 |
+
}
|
491 |
"""
|
492 |
|
493 |
choices_with_tools = [
|
|
|
686 |
with gr.Column():
|
687 |
with gr.Accordion(elem_classes="accordion", label="Bases de datos del conocimiento", open=False):
|
688 |
# CheckboxGroup
|
689 |
+
chx = gr.CheckboxGroup(choices=choice_labels, value=choice_labels, show_label=False, elem_id="select_list")
|
690 |
chx.select(fn=update_selected_choices, inputs=chx)
|
691 |
|
692 |
# Seleccionar/deseleccionar todos
|