phyloforfun commited on
Commit
3cef87b
1 Parent(s): 8570ea5
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -805,7 +805,7 @@ The desired null value is also given. Populate the field with the null value of
805
  st.session_state['selected_column'] = column_name
806
 
807
  # Form for input fields
808
- with st.form(key='rule_form', clear_on_submit=True):
809
  format_options = ["verbatim transcription", "spell check transcription", "boolean yes no", "boolean 1 0", "integer", "[list]", "yyyy-mm-dd"]
810
  current_rule["format"] = st.selectbox("Format:", format_options, index=format_options.index(current_rule["format"]) if current_rule["format"] else 0)
811
  current_rule["null_value"] = st.text_input("Null value:", value=current_rule["null_value"])
 
805
  st.session_state['selected_column'] = column_name
806
 
807
  # Form for input fields
808
+ with st.form(key='rule_form'):
809
  format_options = ["verbatim transcription", "spell check transcription", "boolean yes no", "boolean 1 0", "integer", "[list]", "yyyy-mm-dd"]
810
  current_rule["format"] = st.selectbox("Format:", format_options, index=format_options.index(current_rule["format"]) if current_rule["format"] else 0)
811
  current_rule["null_value"] = st.text_input("Null value:", value=current_rule["null_value"])