Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -636,10 +636,10 @@ def main():
|
|
636 |
|
637 |
if total_docs > 5:
|
638 |
documents_to_display = documents[:5]
|
639 |
-
st.info("Showing top 5 most recent documents.")
|
640 |
else:
|
641 |
documents_to_display = documents
|
642 |
-
st.info(f"Showing all {len(documents_to_display)} documents.")
|
643 |
|
644 |
if documents_to_display:
|
645 |
# 🎨 View options - "Different strokes for different folks"
|
|
|
636 |
|
637 |
if total_docs > 5:
|
638 |
documents_to_display = documents[:5]
|
639 |
+
st.sidebar.info("Showing top 5 most recent documents.")
|
640 |
else:
|
641 |
documents_to_display = documents
|
642 |
+
st.sidebar.info(f"Showing all {len(documents_to_display)} documents.")
|
643 |
|
644 |
if documents_to_display:
|
645 |
# 🎨 View options - "Different strokes for different folks"
|