emvecchi commited on
Commit
c1aa202
1 Parent(s): 0521783

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -67,7 +67,12 @@ default_choices = function_choices
67
 
68
  fields: List[Field] = [
69
  Field(name="topic", type="input_col", title="**Topic:**"),
70
- Field(name="parent_comment", type="input_col", title="**Preceeding Comment:**"),
 
 
 
 
 
71
  Field(name="comment", type="input_col", title="**Comment:**"),
72
  Field(name="image_name", type="input_col", title="**Visualization of high contributing properties:**"),
73
 
 
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:**"),
78