Skip to content

Commit

Permalink
Uncommented the text search.
Browse files Browse the repository at this point in the history
  • Loading branch information
geoffroy-noel-ddh committed Jan 12, 2024
1 parent 2be2c6e commit 9f4db61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions streamlit_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,8 +279,8 @@ def filter_data(data: pd.DataFrame) -> Optional[pd.DataFrame]:
if get_session_filter_entities() and entities is not None:
data = data[data[_s.FIELD_ID].isin(entities[_s.FIELD_ID])]

# text_search(data)
# data = filter_data_by_text_search(data)
text_search(data)
data = filter_data_by_text_search(data)

return data

Expand Down

0 comments on commit 9f4db61

Please sign in to comment.