emvecchi commited on
Commit
44c502a
1 Parent(s): c1aa202

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -5
app.py CHANGED
@@ -67,11 +67,9 @@ default_choices = function_choices
67
 
68
  fields: List[Field] = [
69
  Field(name="topic", type="input_col", title="**Topic:**"),
70
- st.markdown("""<details open>
71
- <summary>**Preceeding Comment:**</summary>
72
- Field(name="parent_comment", type="input_col", title="**Preceeding Comment:**"),
73
- </details>
74
- """, unsafe_allow_html=True)
75
  #Field(name="parent_comment", type="input_col", title="**Preceeding Comment:**"),
76
  Field(name="comment", type="input_col", title="**Comment:**"),
77
  Field(name="image_name", type="input_col", title="**Visualization of high contributing properties:**"),
 
67
 
68
  fields: List[Field] = [
69
  Field(name="topic", type="input_col", title="**Topic:**"),
70
+ Field(type="expander", title="**Preceeding Comment:** *(expand)*", children=[
71
+ Field(name="parent_comment", type="input_col", title="**Preceeding Comment:**"),
72
+ ]),
 
 
73
  #Field(name="parent_comment", type="input_col", title="**Preceeding Comment:**"),
74
  Field(name="comment", type="input_col", title="**Comment:**"),
75
  Field(name="image_name", type="input_col", title="**Visualization of high contributing properties:**"),