Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -792,7 +792,7 @@ def fetch_questions() -> Tuple[str, Optional[pd.DataFrame]]:
|
|
792 |
display_data.append({
|
793 |
"Task ID": item.get("task_id", "Unknown"),
|
794 |
"Question": question_text[:100] + "..." if len(question_text) > 100 else question_text,
|
795 |
-
"Has Attachments": "Yes" if
|
796 |
"Attachment Info": attachment_info
|
797 |
})
|
798 |
|
|
|
792 |
display_data.append({
|
793 |
"Task ID": item.get("task_id", "Unknown"),
|
794 |
"Question": question_text[:100] + "..." if len(question_text) > 100 else question_text,
|
795 |
+
"Has Attachments": "Yes" if has_file else "No",
|
796 |
"Attachment Info": attachment_info
|
797 |
})
|
798 |
|