Commit
·
a75c207
1
Parent(s):
b8d971b
fix
Browse files
app.py
CHANGED
@@ -43,7 +43,7 @@ with st.form('my_form'):
|
|
43 |
submitted = cols[0].form_submit_button('翻译')
|
44 |
src = cols[1].selectbox(
|
45 |
'from', options=list(langs.keys()), format_func=chose_lang_format)
|
46 |
-
to = cols[
|
47 |
'to', options=list(langs.keys()), format_func=chose_lang_format)
|
48 |
|
49 |
st.subheader('翻译结果')
|
|
|
43 |
submitted = cols[0].form_submit_button('翻译')
|
44 |
src = cols[1].selectbox(
|
45 |
'from', options=list(langs.keys()), format_func=chose_lang_format)
|
46 |
+
to = cols[2].selectbox(
|
47 |
'to', options=list(langs.keys()), format_func=chose_lang_format)
|
48 |
|
49 |
st.subheader('翻译结果')
|