Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -165,7 +165,7 @@ def display_articles_for_category(pn_option):
|
|
165 |
|
166 |
with st.expander(f"{idx + 1}• {topic} | Generated Traffic: {data['searchQueries']}"):
|
167 |
|
168 |
-
for article_index, article in enumerate(data["articles"], start=1):
|
169 |
checkbox_label = f"{pn_option}_{idx}_{article_index}"
|
170 |
|
171 |
|
|
|
165 |
|
166 |
with st.expander(f"{idx + 1}• {topic} | Generated Traffic: {data['searchQueries']}"):
|
167 |
|
168 |
+
for article_index, article in enumerate(data["articles"][:3], start=1):
|
169 |
checkbox_label = f"{pn_option}_{idx}_{article_index}"
|
170 |
|
171 |
|