diff --git a/AdminDashboard/src/Pages/Settings/Probes/Index.tsx b/AdminDashboard/src/Pages/Settings/Probes/Index.tsx index 8943cdfefc5..67da8aa8010 100644 --- a/AdminDashboard/src/Pages/Settings/Probes/Index.tsx +++ b/AdminDashboard/src/Pages/Settings/Probes/Index.tsx @@ -99,7 +99,7 @@ const Settings: FunctionComponent = (): ReactElement => { }, title: "Description", fieldType: FormFieldSchemaType.LongText, - required: true, + required: false, placeholder: "This probe is to monitor all the internal services.", }, diff --git a/Dashboard/src/Components/CallSMS/CallSMSConfigTable.tsx b/Dashboard/src/Components/CallSMS/CallSMSConfigTable.tsx index fd3e1f28dec..44629697dbf 100644 --- a/Dashboard/src/Components/CallSMS/CallSMSConfigTable.tsx +++ b/Dashboard/src/Components/CallSMS/CallSMSConfigTable.tsx @@ -134,7 +134,7 @@ const CustomCallSMSTable: FunctionComponent = (): ReactElement => { }, title: "Description", fieldType: FormFieldSchemaType.LongText, - required: true, + required: false, stepId: "basic-info", description: "Friendly description for this config so you remember what this is about.", diff --git a/Dashboard/src/Components/CustomSMTP/CustomSMTPTable.tsx b/Dashboard/src/Components/CustomSMTP/CustomSMTPTable.tsx index 819975f7e38..7d8d37088fa 100644 --- a/Dashboard/src/Components/CustomSMTP/CustomSMTPTable.tsx +++ b/Dashboard/src/Components/CustomSMTP/CustomSMTPTable.tsx @@ -113,7 +113,7 @@ const CustomSMTPTable: FunctionComponent = (): ReactElement => { }, title: "Description", fieldType: FormFieldSchemaType.LongText, - required: true, + required: false, stepId: "basic-info", description: "Friendly description for this config so you remember what this is about.", diff --git a/Dashboard/src/Components/Form/Monitor/MonitorCriteriaAlertForm.tsx b/Dashboard/src/Components/Form/Monitor/MonitorCriteriaAlertForm.tsx index 536becf8c8a..d9247f3b41b 100644 --- a/Dashboard/src/Components/Form/Monitor/MonitorCriteriaAlertForm.tsx +++ b/Dashboard/src/Components/Form/Monitor/MonitorCriteriaAlertForm.tsx @@ -59,7 +59,7 @@ const MonitorCriteriaAlertForm: FunctionComponent = ( title: "Alert Description", stepId: "alert-details", fieldType: FormFieldSchemaType.Markdown, - required: true, + required: false, placeholder: "Description", }, { diff --git a/Dashboard/src/Components/Form/Monitor/MonitorCriteriaIncidentForm.tsx b/Dashboard/src/Components/Form/Monitor/MonitorCriteriaIncidentForm.tsx index 1e4671e59e5..01815e6d194 100644 --- a/Dashboard/src/Components/Form/Monitor/MonitorCriteriaIncidentForm.tsx +++ b/Dashboard/src/Components/Form/Monitor/MonitorCriteriaIncidentForm.tsx @@ -58,7 +58,7 @@ const MonitorCriteriaIncidentForm: FunctionComponent = ( title: "Incident Description", stepId: "incident-details", fieldType: FormFieldSchemaType.Markdown, - required: true, + required: false, placeholder: "Description", }, { diff --git a/Dashboard/src/Components/Incident/IncidentsTable.tsx b/Dashboard/src/Components/Incident/IncidentsTable.tsx index 16889ec2dcb..fb1b7022382 100644 --- a/Dashboard/src/Components/Incident/IncidentsTable.tsx +++ b/Dashboard/src/Components/Incident/IncidentsTable.tsx @@ -272,7 +272,7 @@ const IncidentsTable: FunctionComponent = ( title: "Description", stepId: "incident-details", fieldType: FormFieldSchemaType.Markdown, - required: true, + required: false, }, { field: { diff --git a/Dashboard/src/Components/ScheduledMaintenance/ScheduledMaintenanceTable.tsx b/Dashboard/src/Components/ScheduledMaintenance/ScheduledMaintenanceTable.tsx index ab247b05985..85b2c128e4e 100644 --- a/Dashboard/src/Components/ScheduledMaintenance/ScheduledMaintenanceTable.tsx +++ b/Dashboard/src/Components/ScheduledMaintenance/ScheduledMaintenanceTable.tsx @@ -287,7 +287,7 @@ const ScheduledMaintenancesTable: FunctionComponent = ( title: "Description", stepId: "event-info", fieldType: FormFieldSchemaType.Markdown, - required: true, + required: false, }, { field: { diff --git a/Dashboard/src/Components/TelemetryService/TelemetryServiceTable.tsx b/Dashboard/src/Components/TelemetryService/TelemetryServiceTable.tsx index 6c909f38b47..c8d52d492ae 100644 --- a/Dashboard/src/Components/TelemetryService/TelemetryServiceTable.tsx +++ b/Dashboard/src/Components/TelemetryService/TelemetryServiceTable.tsx @@ -65,7 +65,7 @@ const TelemetryServiceTable: FunctionComponent = ( }, title: "Description", fieldType: FormFieldSchemaType.LongText, - required: true, + required: false, placeholder: "Service Description", }, ]} diff --git a/Dashboard/src/Pages/AICopilot/CodeRepository/View/Index.tsx b/Dashboard/src/Pages/AICopilot/CodeRepository/View/Index.tsx index 2f5d7cfc933..85fe1828f97 100644 --- a/Dashboard/src/Pages/AICopilot/CodeRepository/View/Index.tsx +++ b/Dashboard/src/Pages/AICopilot/CodeRepository/View/Index.tsx @@ -131,7 +131,7 @@ const CopilotPageView: FunctionComponent< stepId: "repository-info", title: "Description", fieldType: FormFieldSchemaType.LongText, - required: true, + required: false, placeholder: "Description", }, { diff --git a/Dashboard/src/Pages/AICopilot/Index.tsx b/Dashboard/src/Pages/AICopilot/Index.tsx index 541d781ff09..6563a90c1b0 100644 --- a/Dashboard/src/Pages/AICopilot/Index.tsx +++ b/Dashboard/src/Pages/AICopilot/Index.tsx @@ -93,7 +93,7 @@ const CodeRepositoryPage: FunctionComponent< }, title: "Description", fieldType: FormFieldSchemaType.LongText, - required: true, + required: false, placeholder: "Description", stepId: "repository-info", }, diff --git a/Dashboard/src/Pages/Alerts/View/Index.tsx b/Dashboard/src/Pages/Alerts/View/Index.tsx index 515a15b5b2e..84b8dd6ad01 100644 --- a/Dashboard/src/Pages/Alerts/View/Index.tsx +++ b/Dashboard/src/Pages/Alerts/View/Index.tsx @@ -574,7 +574,7 @@ const AlertView: FunctionComponent = (): ReactElement => { title: "Description", fieldType: FormFieldSchemaType.Markdown, - required: true, + required: false, placeholder: "Description", }, ]} diff --git a/Dashboard/src/Pages/Dashboards/Dashboards.tsx b/Dashboard/src/Pages/Dashboards/Dashboards.tsx index 4db42942246..90b08a71002 100644 --- a/Dashboard/src/Pages/Dashboards/Dashboards.tsx +++ b/Dashboard/src/Pages/Dashboards/Dashboards.tsx @@ -64,7 +64,7 @@ const Dashboards: FunctionComponent = (): ReactElement => { }, title: "Description", fieldType: FormFieldSchemaType.LongText, - required: true, + required: false, placeholder: "Description", }, ]} diff --git a/Dashboard/src/Pages/Dashboards/View/Overview.tsx b/Dashboard/src/Pages/Dashboards/View/Overview.tsx index 68feb513418..08704231b89 100644 --- a/Dashboard/src/Pages/Dashboards/View/Overview.tsx +++ b/Dashboard/src/Pages/Dashboards/View/Overview.tsx @@ -55,7 +55,7 @@ const DashboardView: FunctionComponent< stepId: "dashboard-info", title: "Description", fieldType: FormFieldSchemaType.LongText, - required: true, + required: false, placeholder: "Description", }, { diff --git a/Dashboard/src/Pages/Incidents/View/Index.tsx b/Dashboard/src/Pages/Incidents/View/Index.tsx index 4cf3dfb034b..6415a91bb1b 100644 --- a/Dashboard/src/Pages/Incidents/View/Index.tsx +++ b/Dashboard/src/Pages/Incidents/View/Index.tsx @@ -609,7 +609,7 @@ const IncidentView: FunctionComponent< title: "Description", fieldType: FormFieldSchemaType.Markdown, - required: true, + required: false, placeholder: "Description", }, ]} diff --git a/Dashboard/src/Pages/Monitor/View/Index.tsx b/Dashboard/src/Pages/Monitor/View/Index.tsx index 51fbe0c2a3d..633980808a2 100644 --- a/Dashboard/src/Pages/Monitor/View/Index.tsx +++ b/Dashboard/src/Pages/Monitor/View/Index.tsx @@ -369,7 +369,7 @@ const MonitorView: FunctionComponent = (): ReactElement => { stepId: "monitor-info", title: "Description", fieldType: FormFieldSchemaType.LongText, - required: true, + required: false, placeholder: "Description", }, { diff --git a/Dashboard/src/Pages/MonitorGroup/MonitorGroups.tsx b/Dashboard/src/Pages/MonitorGroup/MonitorGroups.tsx index b223a3f7e90..b8aa139d00f 100644 --- a/Dashboard/src/Pages/MonitorGroup/MonitorGroups.tsx +++ b/Dashboard/src/Pages/MonitorGroup/MonitorGroups.tsx @@ -80,7 +80,7 @@ const MonitorGroupPage: FunctionComponent = ( title: "Description", fieldType: FormFieldSchemaType.LongText, - required: true, + required: false, placeholder: "Description", }, ]} diff --git a/Dashboard/src/Pages/MonitorGroup/View/Index.tsx b/Dashboard/src/Pages/MonitorGroup/View/Index.tsx index af701425f58..516918ca90f 100644 --- a/Dashboard/src/Pages/MonitorGroup/View/Index.tsx +++ b/Dashboard/src/Pages/MonitorGroup/View/Index.tsx @@ -207,7 +207,7 @@ const MonitorGroupView: FunctionComponent< stepId: "monitor-info", title: "Group Description", fieldType: FormFieldSchemaType.LongText, - required: true, + required: false, placeholder: "Description", }, { diff --git a/Dashboard/src/Pages/OnCallDuty/OnCallDutyPolicies.tsx b/Dashboard/src/Pages/OnCallDuty/OnCallDutyPolicies.tsx index a9fbd412324..bbd896c3b6b 100644 --- a/Dashboard/src/Pages/OnCallDuty/OnCallDutyPolicies.tsx +++ b/Dashboard/src/Pages/OnCallDuty/OnCallDutyPolicies.tsx @@ -57,7 +57,7 @@ const OnCallDutyPage: FunctionComponent< }, title: "Description", fieldType: FormFieldSchemaType.LongText, - required: true, + required: false, placeholder: "Description", }, { diff --git a/Dashboard/src/Pages/OnCallDuty/OnCallDutyPolicy/Escalation.tsx b/Dashboard/src/Pages/OnCallDuty/OnCallDutyPolicy/Escalation.tsx index ea9ec3bb0bb..a6147405fef 100644 --- a/Dashboard/src/Pages/OnCallDuty/OnCallDutyPolicy/Escalation.tsx +++ b/Dashboard/src/Pages/OnCallDuty/OnCallDutyPolicy/Escalation.tsx @@ -97,7 +97,7 @@ const OnCallPolicyDelete: FunctionComponent = ( title: "Description", stepId: "overview", fieldType: FormFieldSchemaType.LongText, - required: true, + required: false, description: "The description of the escalation rule. This is used to describe the rule.", }, diff --git a/Dashboard/src/Pages/OnCallDuty/OnCallDutyPolicy/Index.tsx b/Dashboard/src/Pages/OnCallDuty/OnCallDutyPolicy/Index.tsx index 6ae5feadb13..d9acab5ca5d 100644 --- a/Dashboard/src/Pages/OnCallDuty/OnCallDutyPolicy/Index.tsx +++ b/Dashboard/src/Pages/OnCallDuty/OnCallDutyPolicy/Index.tsx @@ -55,7 +55,7 @@ const OnCallDutyPolicyView: FunctionComponent< stepId: "on-call-policy-info", title: "Description", fieldType: FormFieldSchemaType.LongText, - required: true, + required: false, placeholder: "Description", }, { diff --git a/Dashboard/src/Pages/OnCallDuty/OnCallDutySchedule/Index.tsx b/Dashboard/src/Pages/OnCallDuty/OnCallDutySchedule/Index.tsx index 68e0347c110..b3dccfcd2b2 100644 --- a/Dashboard/src/Pages/OnCallDuty/OnCallDutySchedule/Index.tsx +++ b/Dashboard/src/Pages/OnCallDuty/OnCallDutySchedule/Index.tsx @@ -55,7 +55,7 @@ const OnCallDutyScheduleView: FunctionComponent< stepId: "on-call-Schedule-info", title: "Description", fieldType: FormFieldSchemaType.LongText, - required: true, + required: false, placeholder: "Description", }, { diff --git a/Dashboard/src/Pages/OnCallDuty/OnCallDutySchedules.tsx b/Dashboard/src/Pages/OnCallDuty/OnCallDutySchedules.tsx index 7eb7b9dc318..a2a1c81b181 100644 --- a/Dashboard/src/Pages/OnCallDuty/OnCallDutySchedules.tsx +++ b/Dashboard/src/Pages/OnCallDuty/OnCallDutySchedules.tsx @@ -48,7 +48,7 @@ const OnCallDutyPage: FunctionComponent< }, title: "Description", fieldType: FormFieldSchemaType.LongText, - required: true, + required: false, placeholder: "Description", }, { diff --git a/Dashboard/src/Pages/ScheduledMaintenanceEvents/View/Index.tsx b/Dashboard/src/Pages/ScheduledMaintenanceEvents/View/Index.tsx index c8eb6224ac0..26612f8c969 100644 --- a/Dashboard/src/Pages/ScheduledMaintenanceEvents/View/Index.tsx +++ b/Dashboard/src/Pages/ScheduledMaintenanceEvents/View/Index.tsx @@ -516,7 +516,7 @@ const ScheduledMaintenanceView: FunctionComponent< title: "Description", fieldType: FormFieldSchemaType.Markdown, - required: true, + required: false, placeholder: "Description", }, ]} diff --git a/Dashboard/src/Pages/ServiceCatalog/ServiceCatalog.tsx b/Dashboard/src/Pages/ServiceCatalog/ServiceCatalog.tsx index 1bdab4443b9..4269f2b1c02 100644 --- a/Dashboard/src/Pages/ServiceCatalog/ServiceCatalog.tsx +++ b/Dashboard/src/Pages/ServiceCatalog/ServiceCatalog.tsx @@ -71,7 +71,7 @@ const ServiceCatalogPage: FunctionComponent< }, title: "Description", fieldType: FormFieldSchemaType.LongText, - required: true, + required: false, placeholder: "Description", }, { diff --git a/Dashboard/src/Pages/ServiceCatalog/View/Index.tsx b/Dashboard/src/Pages/ServiceCatalog/View/Index.tsx index 896e7ed4c12..3c2bfeb5977 100644 --- a/Dashboard/src/Pages/ServiceCatalog/View/Index.tsx +++ b/Dashboard/src/Pages/ServiceCatalog/View/Index.tsx @@ -58,7 +58,7 @@ const StatusPageView: FunctionComponent< stepId: "service-info", title: "Description", fieldType: FormFieldSchemaType.LongText, - required: true, + required: false, placeholder: "Description", }, { diff --git a/Dashboard/src/Pages/Settings/APIKeyView.tsx b/Dashboard/src/Pages/Settings/APIKeyView.tsx index 5a3883ac4e6..c7ac8dce9d4 100644 --- a/Dashboard/src/Pages/Settings/APIKeyView.tsx +++ b/Dashboard/src/Pages/Settings/APIKeyView.tsx @@ -265,7 +265,7 @@ const APIKeyView: FunctionComponent = ( }, title: "Description", fieldType: FormFieldSchemaType.LongText, - required: true, + required: false, placeholder: "API Key Description", }, { diff --git a/Dashboard/src/Pages/Settings/APIKeys.tsx b/Dashboard/src/Pages/Settings/APIKeys.tsx index e3338d7deca..e406b01061b 100644 --- a/Dashboard/src/Pages/Settings/APIKeys.tsx +++ b/Dashboard/src/Pages/Settings/APIKeys.tsx @@ -47,7 +47,7 @@ const APIKeys: FunctionComponent = (): ReactElement => { }, title: "Description", fieldType: FormFieldSchemaType.LongText, - required: true, + required: false, placeholder: "API Key Description", }, { diff --git a/Dashboard/src/Pages/Settings/AlertSeverity.tsx b/Dashboard/src/Pages/Settings/AlertSeverity.tsx index 798a810ca4c..9c97ce9dd78 100644 --- a/Dashboard/src/Pages/Settings/AlertSeverity.tsx +++ b/Dashboard/src/Pages/Settings/AlertSeverity.tsx @@ -91,7 +91,7 @@ const AlertSeverityPage: FunctionComponent< }, title: "Description", fieldType: FormFieldSchemaType.LongText, - required: true, + required: false, placeholder: "This alert state happens when the alert is investigated", }, diff --git a/Dashboard/src/Pages/Settings/AlertState.tsx b/Dashboard/src/Pages/Settings/AlertState.tsx index 21c5ca883ad..461e11725bb 100644 --- a/Dashboard/src/Pages/Settings/AlertState.tsx +++ b/Dashboard/src/Pages/Settings/AlertState.tsx @@ -114,7 +114,7 @@ const AlertsPage: FunctionComponent = (): ReactElement => { }, title: "Description", fieldType: FormFieldSchemaType.LongText, - required: true, + required: false, placeholder: "This alert state happens when the alert is investigated", }, diff --git a/Dashboard/src/Pages/Settings/Base/CustomFieldsPageBase.tsx b/Dashboard/src/Pages/Settings/Base/CustomFieldsPageBase.tsx index 02fbaaa5be7..8869aabbf00 100644 --- a/Dashboard/src/Pages/Settings/Base/CustomFieldsPageBase.tsx +++ b/Dashboard/src/Pages/Settings/Base/CustomFieldsPageBase.tsx @@ -69,7 +69,7 @@ const CustomFieldsPageBase: ( }, title: "Field Description", fieldType: FormFieldSchemaType.LongText, - required: true, + required: false, placeholder: "This label is for all the internal services.", }, { diff --git a/Dashboard/src/Pages/Settings/IncidentSeverity.tsx b/Dashboard/src/Pages/Settings/IncidentSeverity.tsx index e684320dc92..a73a3732cb3 100644 --- a/Dashboard/src/Pages/Settings/IncidentSeverity.tsx +++ b/Dashboard/src/Pages/Settings/IncidentSeverity.tsx @@ -91,7 +91,7 @@ const IncidentSeverityPage: FunctionComponent< }, title: "Description", fieldType: FormFieldSchemaType.LongText, - required: true, + required: false, placeholder: "This incident state happens when the incident is investigated", }, diff --git a/Dashboard/src/Pages/Settings/IncidentState.tsx b/Dashboard/src/Pages/Settings/IncidentState.tsx index be81fb4e171..e8db0fab20a 100644 --- a/Dashboard/src/Pages/Settings/IncidentState.tsx +++ b/Dashboard/src/Pages/Settings/IncidentState.tsx @@ -116,7 +116,7 @@ const IncidentsPage: FunctionComponent< }, title: "Description", fieldType: FormFieldSchemaType.LongText, - required: true, + required: false, placeholder: "This incident state happens when the incident is investigated", }, diff --git a/Dashboard/src/Pages/Settings/IncidentTemplates.tsx b/Dashboard/src/Pages/Settings/IncidentTemplates.tsx index 619b2b52d44..7eff0315b78 100644 --- a/Dashboard/src/Pages/Settings/IncidentTemplates.tsx +++ b/Dashboard/src/Pages/Settings/IncidentTemplates.tsx @@ -110,7 +110,7 @@ const IncidentTemplates: FunctionComponent = ( title: "Description", stepId: "incident-details", fieldType: FormFieldSchemaType.Markdown, - required: true, + required: false, }, { field: { diff --git a/Dashboard/src/Pages/Settings/IncidentTemplatesView.tsx b/Dashboard/src/Pages/Settings/IncidentTemplatesView.tsx index e94bb4c2a4c..cf20d827afe 100644 --- a/Dashboard/src/Pages/Settings/IncidentTemplatesView.tsx +++ b/Dashboard/src/Pages/Settings/IncidentTemplatesView.tsx @@ -113,7 +113,7 @@ const TeamView: FunctionComponent = (): ReactElement => { title: "Description", stepId: "incident-details", fieldType: FormFieldSchemaType.Markdown, - required: true, + required: false, }, { field: { diff --git a/Dashboard/src/Pages/Settings/Labels.tsx b/Dashboard/src/Pages/Settings/Labels.tsx index 71bdcd5d13a..07f4a529384 100644 --- a/Dashboard/src/Pages/Settings/Labels.tsx +++ b/Dashboard/src/Pages/Settings/Labels.tsx @@ -48,7 +48,7 @@ const Labels: FunctionComponent = (): ReactElement => { }, title: "Description", fieldType: FormFieldSchemaType.LongText, - required: true, + required: false, placeholder: "This label is for all the internal services.", }, { diff --git a/Dashboard/src/Pages/Settings/MonitorSecrets.tsx b/Dashboard/src/Pages/Settings/MonitorSecrets.tsx index 9f83338f3b5..cc093824377 100644 --- a/Dashboard/src/Pages/Settings/MonitorSecrets.tsx +++ b/Dashboard/src/Pages/Settings/MonitorSecrets.tsx @@ -98,7 +98,7 @@ const MonitorSecrets: FunctionComponent< }, title: "Description", fieldType: FormFieldSchemaType.LongText, - required: true, + required: false, placeholder: "Secret Description", }, { diff --git a/Dashboard/src/Pages/Settings/MonitorStatus.tsx b/Dashboard/src/Pages/Settings/MonitorStatus.tsx index a5cc3ca4473..218e1e48647 100644 --- a/Dashboard/src/Pages/Settings/MonitorStatus.tsx +++ b/Dashboard/src/Pages/Settings/MonitorStatus.tsx @@ -83,7 +83,7 @@ const Monitors: FunctionComponent = ( }, title: "Description", fieldType: FormFieldSchemaType.LongText, - required: true, + required: false, placeholder: "Monitors are up and operating normally.", }, { diff --git a/Dashboard/src/Pages/Settings/ProbeView.tsx b/Dashboard/src/Pages/Settings/ProbeView.tsx index 351fa95891d..5ba064b7b60 100644 --- a/Dashboard/src/Pages/Settings/ProbeView.tsx +++ b/Dashboard/src/Pages/Settings/ProbeView.tsx @@ -85,7 +85,7 @@ const TeamView: FunctionComponent = ( title: "Description", stepId: "basic-info", fieldType: FormFieldSchemaType.LongText, - required: true, + required: false, placeholder: "This probe is to monitor all the internal services.", }, diff --git a/Dashboard/src/Pages/Settings/ScheduledMaintenanceState.tsx b/Dashboard/src/Pages/Settings/ScheduledMaintenanceState.tsx index 5bd748bb1f9..e0e32caee7b 100644 --- a/Dashboard/src/Pages/Settings/ScheduledMaintenanceState.tsx +++ b/Dashboard/src/Pages/Settings/ScheduledMaintenanceState.tsx @@ -124,7 +124,7 @@ const ScheduledMaintenancesPage: FunctionComponent< }, title: "Description", fieldType: FormFieldSchemaType.LongText, - required: true, + required: false, placeholder: "This Scheduled Maintenance state happens when the event is been monitored", }, diff --git a/Dashboard/src/Pages/Settings/TeamView.tsx b/Dashboard/src/Pages/Settings/TeamView.tsx index 30cb9380842..f5e3ce2142d 100644 --- a/Dashboard/src/Pages/Settings/TeamView.tsx +++ b/Dashboard/src/Pages/Settings/TeamView.tsx @@ -262,7 +262,7 @@ const TeamView: FunctionComponent = ( }, title: "Description", fieldType: FormFieldSchemaType.LongText, - required: true, + required: false, placeholder: "Team Description", }, ]} diff --git a/Dashboard/src/Pages/Settings/Teams.tsx b/Dashboard/src/Pages/Settings/Teams.tsx index 2467f44cab0..fafe08cfc5f 100644 --- a/Dashboard/src/Pages/Settings/Teams.tsx +++ b/Dashboard/src/Pages/Settings/Teams.tsx @@ -48,7 +48,7 @@ const Teams: FunctionComponent = ( }, title: "Description", fieldType: FormFieldSchemaType.LongText, - required: true, + required: false, placeholder: "Team Description", }, ]} diff --git a/Dashboard/src/Pages/Settings/TelemetryIngestionKeyView.tsx b/Dashboard/src/Pages/Settings/TelemetryIngestionKeyView.tsx index dcc6121ace9..64184c9f7fe 100644 --- a/Dashboard/src/Pages/Settings/TelemetryIngestionKeyView.tsx +++ b/Dashboard/src/Pages/Settings/TelemetryIngestionKeyView.tsx @@ -54,7 +54,7 @@ const TelemetryIngestionKeyView: FunctionComponent = ( }, title: "Description", fieldType: FormFieldSchemaType.LongText, - required: true, + required: false, placeholder: "Telemetry Ingestion Key Description", }, ]} diff --git a/Dashboard/src/Pages/Settings/TelemetryIngestionKeys.tsx b/Dashboard/src/Pages/Settings/TelemetryIngestionKeys.tsx index d9e131e71c7..ee16041660a 100644 --- a/Dashboard/src/Pages/Settings/TelemetryIngestionKeys.tsx +++ b/Dashboard/src/Pages/Settings/TelemetryIngestionKeys.tsx @@ -48,7 +48,7 @@ const APIKeys: FunctionComponent = (): ReactElement => { }, title: "Description", fieldType: FormFieldSchemaType.LongText, - required: true, + required: false, placeholder: "Ingestion Key Description", }, ]} diff --git a/Dashboard/src/Pages/StatusPages/StatusPages.tsx b/Dashboard/src/Pages/StatusPages/StatusPages.tsx index 6c05f6a9d76..2705e650385 100644 --- a/Dashboard/src/Pages/StatusPages/StatusPages.tsx +++ b/Dashboard/src/Pages/StatusPages/StatusPages.tsx @@ -72,7 +72,7 @@ const StatusPages: FunctionComponent = (): ReactElement => { }, title: "Description", fieldType: FormFieldSchemaType.LongText, - required: true, + required: false, placeholder: "Description", }, ]} diff --git a/Dashboard/src/Pages/StatusPages/View/Announcements.tsx b/Dashboard/src/Pages/StatusPages/View/Announcements.tsx index 7602a9d481a..80a8e7b8720 100644 --- a/Dashboard/src/Pages/StatusPages/View/Announcements.tsx +++ b/Dashboard/src/Pages/StatusPages/View/Announcements.tsx @@ -82,7 +82,7 @@ const StatusPageDelete: FunctionComponent = ( title: "Description", stepId: "basic", fieldType: FormFieldSchemaType.Markdown, - required: true, + required: false, description: "Add an announcement note. This is in Markdown.", }, { diff --git a/Dashboard/src/Pages/StatusPages/View/Index.tsx b/Dashboard/src/Pages/StatusPages/View/Index.tsx index 07b3d89cf83..416c9f434f3 100644 --- a/Dashboard/src/Pages/StatusPages/View/Index.tsx +++ b/Dashboard/src/Pages/StatusPages/View/Index.tsx @@ -58,7 +58,7 @@ const StatusPageView: FunctionComponent< stepId: "status-page-info", title: "Description", fieldType: FormFieldSchemaType.LongText, - required: true, + required: false, placeholder: "Description", }, { diff --git a/Dashboard/src/Pages/Telemetry/Services/View/Index.tsx b/Dashboard/src/Pages/Telemetry/Services/View/Index.tsx index 39d21b6016f..2efd8ee76ec 100644 --- a/Dashboard/src/Pages/Telemetry/Services/View/Index.tsx +++ b/Dashboard/src/Pages/Telemetry/Services/View/Index.tsx @@ -55,7 +55,7 @@ const ServiceDelete: FunctionComponent< stepId: "service-info", title: "Description", fieldType: FormFieldSchemaType.LongText, - required: true, + required: false, placeholder: "Description", }, { diff --git a/Dashboard/src/Pages/Workflow/Variable.tsx b/Dashboard/src/Pages/Workflow/Variable.tsx index eac181529ba..2317d62e801 100644 --- a/Dashboard/src/Pages/Workflow/Variable.tsx +++ b/Dashboard/src/Pages/Workflow/Variable.tsx @@ -51,7 +51,7 @@ const Workflows: FunctionComponent = (): ReactElement => { }, title: "Description", fieldType: FormFieldSchemaType.LongText, - required: true, + required: false, placeholder: "Description", }, { diff --git a/Dashboard/src/Pages/Workflow/View/Index.tsx b/Dashboard/src/Pages/Workflow/View/Index.tsx index 8ecffe4affc..8364c30d0de 100644 --- a/Dashboard/src/Pages/Workflow/View/Index.tsx +++ b/Dashboard/src/Pages/Workflow/View/Index.tsx @@ -54,7 +54,7 @@ const Delete: FunctionComponent = (): ReactElement => { stepId: "workflow-info", title: "Description", fieldType: FormFieldSchemaType.LongText, - required: true, + required: false, placeholder: "Description", }, { diff --git a/Dashboard/src/Pages/Workflow/View/Variable.tsx b/Dashboard/src/Pages/Workflow/View/Variable.tsx index 30bb50f0d43..105224a74e4 100644 --- a/Dashboard/src/Pages/Workflow/View/Variable.tsx +++ b/Dashboard/src/Pages/Workflow/View/Variable.tsx @@ -58,7 +58,7 @@ const Workflows: FunctionComponent = (): ReactElement => { }, title: "Description", fieldType: FormFieldSchemaType.LongText, - required: true, + required: false, placeholder: "Description", }, {