tatianija commited on
Commit
8c7ecf5
·
verified ·
1 Parent(s): 03d8d3a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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 has_attachments else "No",
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