Corey Morris
commited on
Commit
•
2a7f691
1
Parent(s):
ea8703d
Added header back for the table
Browse files
app.py
CHANGED
@@ -115,6 +115,7 @@ column_search_query = st.text_input("Filter by Column/Task Name:", "")
|
|
115 |
matching_columns = [col for col in filtered_data.columns if column_search_query.lower() in col.lower()]
|
116 |
|
117 |
# Display the DataFrame with only the matching columns
|
|
|
118 |
st.dataframe(filtered_data[matching_columns])
|
119 |
|
120 |
|
|
|
115 |
matching_columns = [col for col in filtered_data.columns if column_search_query.lower() in col.lower()]
|
116 |
|
117 |
# Display the DataFrame with only the matching columns
|
118 |
+
st.markdown("## Sortable Results")
|
119 |
st.dataframe(filtered_data[matching_columns])
|
120 |
|
121 |
|