Borya-Goldarb commited on
Commit
b53b5df
·
verified ·
1 Parent(s): 196ea3f

Update pages/comps_data.py

Browse files
Files changed (1) hide show
  1. pages/comps_data.py +3 -2
pages/comps_data.py CHANGED
@@ -154,8 +154,9 @@ def main():
154
  )
155
  with col_3_2:
156
  if st.button("Add comps", help="Click to add more comps"):
157
- filtered_data = pd.concat([filtered_data, test])
158
- st.write(test)
 
159
  with col_3_3:
160
  st.write('Filter definition')
161
 
 
154
  )
155
  with col_3_2:
156
  if st.button("Add comps", help="Click to add more comps"):
157
+ filtered_data1 = pd.concat([filtered_data, test])
158
+ filtered_data.update(filtered_data1)
159
+ # st.write(test)
160
  with col_3_3:
161
  st.write('Filter definition')
162