label fixed
Browse files
app.py
CHANGED
|
@@ -11,9 +11,9 @@ with gr.Blocks() as demo:
|
|
| 11 |
with gr.Row():
|
| 12 |
with gr.Column():
|
| 13 |
sms = gr.Textbox(label = "SMS à checker")
|
| 14 |
-
spam_check_btn = gr.Button(
|
| 15 |
with gr.Column():
|
| 16 |
-
result = gr.Textbox(
|
| 17 |
|
| 18 |
spam_check_btn.click(check_spam, input = sms, outputs = result)
|
| 19 |
|
|
|
|
| 11 |
with gr.Row():
|
| 12 |
with gr.Column():
|
| 13 |
sms = gr.Textbox(label = "SMS à checker")
|
| 14 |
+
spam_check_btn = gr.Button("Check")
|
| 15 |
with gr.Column():
|
| 16 |
+
result = gr.Textbox()
|
| 17 |
|
| 18 |
spam_check_btn.click(check_spam, input = sms, outputs = result)
|
| 19 |
|