ericjedha commited on
Commit
2969d4e
·
1 Parent(s): da5e56d

label fixed

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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(label="Check")
15
  with gr.Column():
16
- result = gr.Textbox(value="Résultat de l'Analyse")
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