value not default
Browse files
app.py
CHANGED
@@ -26,7 +26,7 @@ with gr.Blocks() as demo:
|
|
26 |
gr.Markdown("## Explore the data from 'Misinformation by Omission: The Need for More Environmental Transparency in AI'")
|
27 |
with gr.Row():
|
28 |
with gr.Column(scale=1):
|
29 |
-
org_choice= gr.Dropdown(organizations,
|
30 |
|
31 |
with gr.Column(scale=4):
|
32 |
gr.Plot(fig)
|
|
|
26 |
gr.Markdown("## Explore the data from 'Misinformation by Omission: The Need for More Environmental Transparency in AI'")
|
27 |
with gr.Row():
|
28 |
with gr.Column(scale=1):
|
29 |
+
org_choice= gr.Dropdown(organizations, value="Alphabet", label="Organizations", info="Pick an organization to explore their environmental disclosures", interactive=True)
|
30 |
|
31 |
with gr.Column(scale=4):
|
32 |
gr.Plot(fig)
|