diff --git a/Dashboard/src/Pages/Alerts/View/InternalNote.tsx b/Dashboard/src/Pages/Alerts/View/InternalNote.tsx index 0e87a06425..c220fa1c1d 100644 --- a/Dashboard/src/Pages/Alerts/View/InternalNote.tsx +++ b/Dashboard/src/Pages/Alerts/View/InternalNote.tsx @@ -168,6 +168,16 @@ const AlertDelete: FunctionComponent = ( "Add a private note to this alert here. This is private to your team and is not visible on Status Page", ), }, + { + field: { + attachments: true, + }, + title: "Attachments", + fieldType: FormFieldSchemaType.MultipleFiles, + required: false, + description: + "Attach files that should be visible to the alert response team.", + }, ]} showAs={ShowAs.List} showRefreshButton={true} diff --git a/Dashboard/src/Pages/Incidents/View/InternalNote.tsx b/Dashboard/src/Pages/Incidents/View/InternalNote.tsx index 10e8a117c3..73899b74aa 100644 --- a/Dashboard/src/Pages/Incidents/View/InternalNote.tsx +++ b/Dashboard/src/Pages/Incidents/View/InternalNote.tsx @@ -168,6 +168,16 @@ const IncidentDelete: FunctionComponent = ( "Add a private note to this incident here. This is private to your team and is not visible on Status Page", ), }, + { + field: { + attachments: true, + }, + title: "Attachments", + fieldType: FormFieldSchemaType.MultipleFiles, + required: false, + description: + "Attach files that should be visible to the incident response team.", + }, ]} showAs={ShowAs.List} showRefreshButton={true} diff --git a/Dashboard/src/Pages/Incidents/View/PublicNote.tsx b/Dashboard/src/Pages/Incidents/View/PublicNote.tsx index 22331f6bce..7361035d7c 100644 --- a/Dashboard/src/Pages/Incidents/View/PublicNote.tsx +++ b/Dashboard/src/Pages/Incidents/View/PublicNote.tsx @@ -194,6 +194,16 @@ const PublicNote: FunctionComponent = ( "This note is visible on your Status Page", ), }, + { + field: { + attachments: true, + }, + title: "Attachments", + fieldType: FormFieldSchemaType.MultipleFiles, + required: false, + description: + "Attach files that should be shared with subscribers on the status page.", + }, { field: { shouldStatusPageSubscribersBeNotifiedOnNoteCreated: true, diff --git a/Dashboard/src/Pages/ScheduledMaintenanceEvents/View/InternalNote.tsx b/Dashboard/src/Pages/ScheduledMaintenanceEvents/View/InternalNote.tsx index e11669301d..4becabbc2d 100644 --- a/Dashboard/src/Pages/ScheduledMaintenanceEvents/View/InternalNote.tsx +++ b/Dashboard/src/Pages/ScheduledMaintenanceEvents/View/InternalNote.tsx @@ -180,6 +180,16 @@ const ScheduledMaintenanceDelete: FunctionComponent = ( "Add a private note to this scheduled maintenance here", ), }, + { + field: { + attachments: true, + }, + title: "Attachments", + fieldType: FormFieldSchemaType.MultipleFiles, + required: false, + description: + "Attach files that should be visible to the scheduled maintenance response team.", + }, ]} showRefreshButton={true} showAs={ShowAs.List} diff --git a/Dashboard/src/Pages/ScheduledMaintenanceEvents/View/PublicNote.tsx b/Dashboard/src/Pages/ScheduledMaintenanceEvents/View/PublicNote.tsx index ffcc08da58..4cc27c10e5 100644 --- a/Dashboard/src/Pages/ScheduledMaintenanceEvents/View/PublicNote.tsx +++ b/Dashboard/src/Pages/ScheduledMaintenanceEvents/View/PublicNote.tsx @@ -207,6 +207,16 @@ const PublicNote: FunctionComponent = ( "This note is visible on your Status Page", ), }, + { + field: { + attachments: true, + }, + title: "Attachments", + fieldType: FormFieldSchemaType.MultipleFiles, + required: false, + description: + "Attach files that should be shared with subscribers on the status page.", + }, { field: { shouldStatusPageSubscribersBeNotifiedOnNoteCreated: true,