Spaces:
Running
Running
Commit ·
7024528
1
Parent(s): 8e30e05
Add msg for date filtering
Browse files- sections/upload.py +3 -1
sections/upload.py
CHANGED
|
@@ -98,7 +98,9 @@ if uploaded_file is not None:
|
|
| 98 |
|
| 99 |
row_count = st.session_state.parsed_df.height
|
| 100 |
if row_count == 0:
|
| 101 |
-
st.error(
|
|
|
|
|
|
|
| 102 |
else:
|
| 103 |
st.success(
|
| 104 |
f"File parsed and filtered successfully! After filtering, {row_count:,} rows remain."
|
|
|
|
| 98 |
|
| 99 |
row_count = st.session_state.parsed_df.height
|
| 100 |
if row_count == 0:
|
| 101 |
+
st.error(
|
| 102 |
+
"No data found in the file. Try uncheck the date filter option."
|
| 103 |
+
)
|
| 104 |
else:
|
| 105 |
st.success(
|
| 106 |
f"File parsed and filtered successfully! After filtering, {row_count:,} rows remain."
|