textbox UI fix (#12)
Browse files- stupid fix (cd020f2fd1437b56947c54234acb572a166e5ef2)
Co-authored-by: Ali Abid <[email protected]>
app.py
CHANGED
|
@@ -94,7 +94,7 @@ with gr.Blocks() as demo:
|
|
| 94 |
chatbot = gr.Chatbot().style(height=500)
|
| 95 |
with gr.Row():
|
| 96 |
with gr.Column(scale=0.70):
|
| 97 |
-
msg = gr.Textbox(label="Chat Message Box", placeholder="Chat Message Box", show_label=
|
| 98 |
with gr.Column(scale=0.30):
|
| 99 |
with gr.Row():
|
| 100 |
submit = gr.Button("Submit")
|
|
|
|
| 94 |
chatbot = gr.Chatbot().style(height=500)
|
| 95 |
with gr.Row():
|
| 96 |
with gr.Column(scale=0.70):
|
| 97 |
+
msg = gr.Textbox(label="Chat Message Box", placeholder="Chat Message Box", show_label=False).style(container=False)
|
| 98 |
with gr.Column(scale=0.30):
|
| 99 |
with gr.Row():
|
| 100 |
submit = gr.Button("Submit")
|