Update app.py
Browse files
app.py
CHANGED
|
@@ -327,9 +327,9 @@ with gr.Blocks() as demo:
|
|
| 327 |
yield_data_input = gr.Textbox(label="Enter your yield data", placeholder="Quantity, Quality", visible=False)
|
| 328 |
|
| 329 |
with gr.Row():
|
| 330 |
-
farm_output_box = gr.Textbox(label="Fields and Activities Output Data")
|
| 331 |
-
interactions_output_box = gr.Textbox(label="Interactions Output Data")
|
| 332 |
-
trials_output_box = gr.Textbox(label="Trials Output Data")
|
| 333 |
|
| 334 |
def update_visibility(radio, additional_options):
|
| 335 |
value = radio
|
|
|
|
| 327 |
yield_data_input = gr.Textbox(label="Enter your yield data", placeholder="Quantity, Quality", visible=False)
|
| 328 |
|
| 329 |
with gr.Row():
|
| 330 |
+
farm_output_box = gr.Textbox(label="Fields and Activities Output Data", interactive=False)
|
| 331 |
+
interactions_output_box = gr.Textbox(label="Interactions Output Data", interactive=False)
|
| 332 |
+
trials_output_box = gr.Textbox(label="Trials Output Data", interactive=False)
|
| 333 |
|
| 334 |
def update_visibility(radio, additional_options):
|
| 335 |
value = radio
|