Spaces:
Runtime error
Runtime error
Very slightly modified the text under how to describe your workshops
Browse files
main.py
CHANGED
@@ -441,7 +441,7 @@ with gr.Blocks() as demo:
|
|
441 |
|
442 |
# Let the user dynamically describe their workshops
|
443 |
descriptions = gr.State([])
|
444 |
-
new_description = gr.Textbox(label='Workshop Descriptions', info='Describe the workshop(s) you want to teach. Include the prereqs, difficulty level, and props required. Hit "Enter" after each one.', visible=False)
|
445 |
|
446 |
def add_descrip(descriptions, new_description):
|
447 |
return descriptions + [{"name": new_description}], ""
|
|
|
441 |
|
442 |
# Let the user dynamically describe their workshops
|
443 |
descriptions = gr.State([])
|
444 |
+
new_description = gr.Textbox(label='Workshop Descriptions', info='Describe the workshop(s) you want to teach. Include the prereqs, difficulty level, and props required for each one. Hit "Enter" after each one.', visible=False)
|
445 |
|
446 |
def add_descrip(descriptions, new_description):
|
447 |
return descriptions + [{"name": new_description}], ""
|