Petr Tsvetkov commited on
Commit
5df3f2f
·
1 Parent(s): d154956

Update submit button text in app.py

Browse files

Changed the text of the submit button from "Submit and continue" to "Submit all and continue". This modification aims to give the users a clearer understanding that all data will be submitted upon button click.

Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -197,7 +197,7 @@ with gr.Blocks(theme=gr.themes.Soft(), head=head_html, css="style_overrides.css"
197
 
198
  model_name.append(gr.Textbox(interactive=False, label=f'model_{model_ind}', visible=False))
199
 
200
- submit_btn = gr.Button("Submit and continue")
201
  session_val = gr.Textbox(info='Session', interactive=False, container=True, show_label=False,
202
  label='session')
203
 
 
197
 
198
  model_name.append(gr.Textbox(interactive=False, label=f'model_{model_ind}', visible=False))
199
 
200
+ submit_btn = gr.Button("Submit all and continue")
201
  session_val = gr.Textbox(info='Session', interactive=False, container=True, show_label=False,
202
  label='session')
203