Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -148,7 +148,7 @@ filtered_catalog = filter_catalog(catalog, search_query, selected_category, cybe
|
|
| 148 |
|
| 149 |
# Display the filtered product catalog
|
| 150 |
st.markdown('<p class="custom-header">Product Catalog</p>', unsafe_allow_html=True)
|
| 151 |
-
st.dataframe(filtered_catalog.style.applymap(lambda x: "background-color: #
|
| 152 |
|
| 153 |
for index, row in filtered_catalog.iterrows():
|
| 154 |
with st.expander(f"{row['Product Name']}"):
|
|
|
|
| 148 |
|
| 149 |
# Display the filtered product catalog
|
| 150 |
st.markdown('<p class="custom-header">Product Catalog</p>', unsafe_allow_html=True)
|
| 151 |
+
st.dataframe(filtered_catalog.style.applymap(lambda x: "background-color: #ffffff"))
|
| 152 |
|
| 153 |
for index, row in filtered_catalog.iterrows():
|
| 154 |
with st.expander(f"{row['Product Name']}"):
|