Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Commit
·
32bb93d
1
Parent(s):
7c48ff5
sort org values by alphabetical
Browse files
app.py
CHANGED
@@ -274,9 +274,9 @@ with gr.Blocks(
|
|
274 |
with gr.Row(variant="compact"):
|
275 |
with gr.Accordion("More options", open=False):
|
276 |
org_selector = gr.Dropdown(
|
277 |
-
choices=orgs,
|
278 |
label="Filter by Organization",
|
279 |
-
value=orgs,
|
280 |
multiselect=True,
|
281 |
info="Limit organizations included in plot",
|
282 |
)
|
|
|
274 |
with gr.Row(variant="compact"):
|
275 |
with gr.Accordion("More options", open=False):
|
276 |
org_selector = gr.Dropdown(
|
277 |
+
choices=sorted(orgs),
|
278 |
label="Filter by Organization",
|
279 |
+
value=sorted(orgs),
|
280 |
multiselect=True,
|
281 |
info="Limit organizations included in plot",
|
282 |
)
|