diff --git a/frontend/src/components/pages/ReportingPage.js b/frontend/src/components/pages/ReportingPage.js index 5f9771a..e704429 100644 --- a/frontend/src/components/pages/ReportingPage.js +++ b/frontend/src/components/pages/ReportingPage.js @@ -2668,9 +2668,9 @@ function FpEditModal({ open, onClose, submission, queueItems, onSuccess }) { {activeTab === 'attachments' && (
- Existing Attachments ({existingAttachments.length}) + Attachments from Initial Submission ({existingAttachments.length}) {existingAttachments.length === 0 ? ( -
No attachments.
+
No attachments were included in the original submission.
) : (
{existingAttachments.map((att, idx) => ( @@ -2694,34 +2694,13 @@ function FpEditModal({ open, onClose, submission, queueItems, onSuccess }) {
)}
- {!isApproved && ( -
- Upload New Attachments - setFiles(Array.from(e.target.files))} - style={{ display: 'block', marginTop: '0.25rem', fontFamily: 'monospace', fontSize: '0.72rem', color: '#94A3B8' }} - /> - {files.length > 0 && ( -
- {files.map((f, idx) => ( -
- - {f.name} ({(f.size / 1024).toFixed(1)} KB) -
- ))} - -
- )} -
- )} +
+ To add additional attachments, upload them directly in the Ivanti platform on the workflow detail page. +
)}