Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -53,7 +53,7 @@ with gr.Blocks() as app:
|
|
53 |
with gr.Row():
|
54 |
with gr.Column():
|
55 |
sender=gr.Textbox(label = "Sender", interactive = False)
|
56 |
-
rec=gr.Dropdown(label="Recipient", choices=[f for f in rec_list], allow_custom_value=True)
|
57 |
send_mes=gr.Textbox(label="Message", lines=6)
|
58 |
send_mes_btn=gr.Button()
|
59 |
with gr.Column():
|
|
|
53 |
with gr.Row():
|
54 |
with gr.Column():
|
55 |
sender=gr.Textbox(label = "Sender", interactive = False)
|
56 |
+
rec=gr.Dropdown(label="Recipient", choices=[f for f in rec_list], allow_custom_value=True, interactive=True)
|
57 |
send_mes=gr.Textbox(label="Message", lines=6)
|
58 |
send_mes_btn=gr.Button()
|
59 |
with gr.Column():
|